using System.ComponentModel.DataAnnotations; namespace MoonlightServers.Shared.Admin.Templates; public class UpdateInstallationConfigDto { [Required, MaxLength(30)] public string Shell { get; set; } = string.Empty; [Required, MaxLength(255)] public string DockerImage { get; set; } = string.Empty; [Required] public string Script { get; set; } = string.Empty; }