mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
18 lines
406 B
C#
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; }
|
|
} |