4 lines
239 B
C#
4 lines
239 B
C#
namespace MoonlightServers.Shared.Admin.Templates;
|
|
|
|
public record LifecycleConfigDto(StartupCommandDto[] StartupCommands, string StopCommand, string[] OnlineLogPatterns);
|
|
public record StartupCommandDto(string DisplayName, string Command); |