namespace MoonlightServers.Shared.Admin.Templates; public class FilesConfigDto { public List ConfigurationFiles { get; set; } = new(); } public class ConfigurationFileDto { public string Path { get; set; } public string Parser { get; set; } public List Mappings { get; set; } = new(); } public class ConfigurationFileMappingDto { public string Key { get; set; } public string? Value { get; set; } }