Implemented theme importing and exporting

This commit is contained in:
2025-08-23 23:39:56 +02:00
parent 6748288f3c
commit 70b310adef
2 changed files with 107 additions and 2 deletions

View 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();
}