using System.ComponentModel.DataAnnotations; namespace Application.DataTransferObjects.CustomEventCategory; public class UpdateCustomEventCategoryDto { [Required] public Guid Id { get; set; } [Required] [MaxLength(250)] public required string Name { get; set; } [Required] public bool IsPointsEvent { get; set; } [Required] public bool IsParticipationEvent { get; set; } }