Implemented template crud, db entities, import/export, ptero and pelican import
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
namespace MoonlightServers.Api.Infrastructure.Database.Json;
|
||||
|
||||
public class LifecycleConfig
|
||||
{
|
||||
public List<StartupCommand> StartupCommands { get; set; } = [];
|
||||
public string StopCommand { get; set; } = string.Empty;
|
||||
public List<string> OnlineLogPatterns { get; set; } = [];
|
||||
}
|
||||
|
||||
public class StartupCommand
|
||||
{
|
||||
public string DisplayName { get; set; } = string.Empty;
|
||||
public string Command { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user