Files
Servers/MoonlightServers.Shared/Admin/Templates/LifecycleConfigDto.cs

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);