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

31 lines
698 B
C#

namespace Application.DataTransferObjects.CustomEvent;
public class CustomEventDto
{
public Guid Id { get; set; }
public Guid AllianceId { get; set; }
public Guid? CustomEventCategoryId { get; set; }
public string? CategoryName { get; set; }
public required string Name { get; set; }
public required string Description { get; set; }
public bool IsPointsEvent { get; set; }
public bool IsParticipationEvent { get; set; }
public DateTime EventDate { get; set; }
public required string CreatedBy { get; set; }
public DateTime? ModifiedOn { get; set; }
public string? ModifiedBy { get; set; }
public bool IsInProgress { get; set; }
}