2024-09-30 14:47:29 +02:00

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