namespace MoonlightServers.Api.Infrastructure.Database.Json; public class LifecycleConfig { public List StartupCommands { get; set; } = []; public string StopCommand { get; set; } = string.Empty; public List OnlineLogPatterns { get; set; } = []; } public class StartupCommand { public string DisplayName { get; set; } = string.Empty; public string Command { get; set; } = string.Empty; }