15 lines
400 B
C#
15 lines
400 B
C#
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;
|
|
} |