mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
17 lines
327 B
C#
17 lines
327 B
C#
namespace Database.Entities;
|
|
|
|
public class DesertStorm : BaseEntity
|
|
{
|
|
public bool Registered { get; set; }
|
|
|
|
public bool Participated { get; set; }
|
|
|
|
public int Year { get; set; }
|
|
|
|
public int CalendarWeek { get; set; }
|
|
|
|
|
|
public Guid PlayerId { get; set; }
|
|
|
|
public required Player Player { get; set; }
|
|
} |