9 lines
312 B
C#
9 lines
312 B
C#
|
namespace Neighbourhood.omg.lol.Models {
|
|||
|
public class PreviewCssData {
|
|||
|
public string BackgroundCss { get; set; } = string.Empty;
|
|||
|
public string TextCss { get; set; } = string.Empty;
|
|||
|
public string LinkCss { get; set; } = string.Empty;
|
|||
|
public string IconCss { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|