using System.ComponentModel.DataAnnotations; namespace MoonlightServers.Shared.Http.Requests; public class FormSubmitDto { [Required] [MaxLength(32)] public string TextField { get; set; } }