Implemented theme importing and exporting
This commit is contained in:
14
Moonlight.Client/Models/ThemeTransferModel.cs
Normal file
14
Moonlight.Client/Models/ThemeTransferModel.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Moonlight.Shared.Misc;
|
||||
|
||||
namespace Moonlight.Client.Models;
|
||||
|
||||
public class ThemeTransferModel
|
||||
{
|
||||
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; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user