Add version field to star entity. Implemented a lot of the star crud
This commit is contained in:
17
MoonlightServers.Shared/Models/ParseConfiguration.cs
Normal file
17
MoonlightServers.Shared/Models/ParseConfiguration.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user