PlayerManagement/Database/Entities/DesertStormParticipant.cs
Tomasi - Developing 35e83c4735 beta 0.0.3
2024-11-26 08:43:01 +01:00

18 lines
406 B
C#

namespace Database.Entities;
public class DesertStormParticipant : BaseEntity
{
public Player Player { get; set; } = null!;
public Guid PlayerId { get; set; }
public DesertStorm DesertStorm { get; set; } = null!;
public Guid DesertStormId { get; set; }
public bool Registered { get; set; }
public bool Participated { get; set; }
public bool StartPlayer { get; set; }
}