Add version field to star entity. Implemented a lot of the star crud

This commit is contained in:
2024-12-06 15:03:28 +01:00
parent 1520d0b2b1
commit de1b54d652
27 changed files with 1448 additions and 194 deletions

View File

@@ -0,0 +1,17 @@
using MoonlightServers.Shared.Enums;
namespace MoonlightServers.Shared.Models;
public class ParseConfiguration
{
public string File { get; set; }
public FileParsers Parser { get; set; }
public List<ParseConfigurationEntry> Entries { get; set; } = new();
public class ParseConfigurationEntry
{
public string Key { get; set; }
public string Value { get; set; }
}
}