mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
18 lines
413 B
C#
18 lines
413 B
C#
namespace Application.DataTransferObjects.DesertStormParticipants;
|
|
|
|
public class DesertStormParticipantDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid DesertStormId { get; set; }
|
|
|
|
public Guid PlayerId { get; set; }
|
|
|
|
public required string PlayerName { get; set; }
|
|
|
|
public bool Registered { get; set; }
|
|
|
|
public bool Participated { get; set; }
|
|
|
|
public bool StartPlayer { get; set; }
|
|
} |