Tomasi - Developing 35e83c4735 beta 0.0.3
2024-11-26 08:43:01 +01:00

16 lines
375 B
C#

namespace Application.DataTransferObjects.CustomEventParticipant;
public class CustomEventParticipantDto
{
public Guid Id { get; set; }
public Guid PlayerId { get; set; }
public Guid CustomEventId { get; set; }
public bool? Participated { get; set; }
public long? AchievedPoints { get; set; }
public required string PlayerName { get; set; }
}