12 lines
277 B
C#
12 lines
277 B
C#
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; }
|
|
} |