Tomasi - Developing 711fb4adaa v 0.9.0
2025-04-23 16:03:41 +02:00

19 lines
416 B
C#

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; }
}