using System.ComponentModel.DataAnnotations; namespace Moonlight.Shared.Http.Requests.Admin.Settings; public class SetWhiteLabelingDto { [Required] public string Name { get; set; } }