Implemented template crud, db entities, import/export, ptero and pelican import
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
namespace MoonlightServers.Api.Infrastructure.Database.Json;
|
||||
|
||||
public class FilesConfig
|
||||
{
|
||||
public List<ConfigurationFile> ConfigurationFiles { get; set; } = [];
|
||||
}
|
||||
|
||||
public class ConfigurationFile
|
||||
{
|
||||
public string Path { get; set; } = string.Empty;
|
||||
public string Parser { get; set; } = string.Empty;
|
||||
public List<ConfigurationFileMapping> Mappings { get; set; } = [];
|
||||
}
|
||||
|
||||
public class ConfigurationFileMapping
|
||||
{
|
||||
public string Key { get; set; } = string.Empty;
|
||||
public string? Value { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user