17 lines
460 B
C#
17 lines
460 B
C#
namespace MoonlightServers.Shared.Admin.Templates;
|
|
|
|
public record DetailedTemplateDto(
|
|
int Id,
|
|
string Name,
|
|
string Description,
|
|
string Author,
|
|
string Version,
|
|
string? UpdateUrl,
|
|
string? DonateUrl,
|
|
FilesConfigDto FilesConfig,
|
|
LifecycleConfigDto LifecycleConfig,
|
|
InstallationConfigDto InstallationConfig,
|
|
MiscellaneousConfigDto MiscellaneousConfig,
|
|
bool AllowUserDockerImageChange,
|
|
int? DefaultDockerImageId
|
|
); |