Expanding theme tab to customization tab. Started improving theme selection.
This commit is contained in:
19
Moonlight.Shared/Http/Responses/Admin/ThemeResponse.cs
Normal file
19
Moonlight.Shared/Http/Responses/Admin/ThemeResponse.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using Moonlight.Shared.Misc;
|
||||
|
||||
namespace Moonlight.Shared.Http.Responses.Admin;
|
||||
|
||||
public class ThemeResponse
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public bool IsEnabled { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
public string Author { get; set; }
|
||||
public string Version { get; set; }
|
||||
|
||||
public string? UpdateUrl { get; set; }
|
||||
public string? DonateUrl { get; set; }
|
||||
|
||||
public ApplicationTheme Content { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user