18 lines
474 B
C#
18 lines
474 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MoonlightServers.Shared.Admin.Templates;
|
|
|
|
public class UpdateVariableDto
|
|
{
|
|
[Required, MaxLength(30)]
|
|
public string DisplayName { get; set; } = string.Empty;
|
|
|
|
[Required, MaxLength(255)]
|
|
public string Description { get; set; }
|
|
|
|
[Required, MaxLength(60)]
|
|
public string EnvName { get; set; } = string.Empty;
|
|
|
|
[MaxLength(1024)]
|
|
public string? DefaultValue { get; set; } = string.Empty;
|
|
} |