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

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; }
}