20 lines
826 B
C#
20 lines
826 B
C#
|
namespace Neighbourhood.omg.lol.Models {
|
|||
|
public class Theme {
|
|||
|
public string Id { get; set; } = string.Empty;
|
|||
|
public string Name { get; set; } = string.Empty;
|
|||
|
public string Created { get; set; } = string.Empty;
|
|||
|
public string Updated { get; set; } = string.Empty;
|
|||
|
public string Author { get; set; } = string.Empty;
|
|||
|
public string AuthorUrl { get; set; } = string.Empty;
|
|||
|
public string Version { get; set; } = string.Empty;
|
|||
|
public string License { get; set; } = string.Empty;
|
|||
|
public string Description { get; set; } = string.Empty;
|
|||
|
public string PreviewCss { get; set; } = string.Empty;
|
|||
|
public string? SampleProfile { get; set; } = string.Empty;
|
|||
|
|
|||
|
public PreviewCssData? PreviewCssData {
|
|||
|
get => new RestService().Deserialize<PreviewCssData>(this.PreviewCss);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|