14 lines
362 B
C#
14 lines
362 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MoonlightServers.Shared.Admin.Templates;
|
|
|
|
public class CreateDockerImageDto
|
|
{
|
|
[Required, MaxLength(30)]
|
|
public string DisplayName { get; set; } = string.Empty;
|
|
|
|
[Required, MaxLength(255)]
|
|
public string ImageName { get; set; } = string.Empty;
|
|
|
|
public bool SkipPulling { get; set; }
|
|
} |