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