10 lines
301 B
C#
10 lines
301 B
C#
namespace Moonlight.Features.Theming.Models;
|
|
|
|
public class ThemeImport
|
|
{
|
|
public string Name { get; set; } = "";
|
|
public string Author { get; set; } = "";
|
|
public string? DonateUrl { get; set; } = "";
|
|
public string CssUrl { get; set; } = "";
|
|
public string? JsUrl { get; set; } = "";
|
|
} |