using System.ComponentModel.DataAnnotations; namespace WePlatform.BaseSystem.Configuration.Dto { public class ChangeUiThemeInput { [Required] [MaxLength(32)] public string Theme { get; set; } } }