namespace Database.Entities; public class Player : BaseEntity { public required string PlayerName { get; set; } public required Rank Rank { get; set; } public Guid RankId { get; set; } public Alliance Alliance { get; set; } public Guid AllianceId { get; set; } public required string Level { get; set; } public ICollection DesertStorms { get; set; } = []; public ICollection VsDuels { get; set; } = []; public ICollection MarshalGuards { get; set; } = []; public ICollection Admonitions { get; set; } = []; public ICollection Notes { get; set; } = []; }