Implemented theme import and export

This commit is contained in:
2026-02-12 11:09:38 +01:00
parent dd44e5bb86
commit 6f941a220c
5 changed files with 146 additions and 11 deletions

View File

@@ -0,0 +1,12 @@
using VYaml.Annotations;
namespace Moonlight.Api.Models;
[YamlObject]
public partial class ThemeTransferModel
{
public string Name { get; set; }
public string Version { get; set; }
public string Author { get; set; }
public string CssContent { get; set; }
}