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

14 lines
325 B
C#

namespace Application.DataTransferObjects.CustomEventCategory;
public class CustomEventCategoryDto
{
public Guid Id { get; set; }
public Guid AllianceId { get; set; }
public required string Name { get; set; }
public bool IsPointsEvent { get; set; }
public bool IsParticipationEvent { get; set; }
}