mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
16 lines
375 B
C#
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; }
|
|
} |