Tomasi - Developing 98f772e5d5 .
2024-10-10 07:42:45 +02:00

27 lines
665 B
C#

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<DesertStorm> DesertStorms { get; set; } = [];
public ICollection<VsDuel> VsDuels { get; set; } = [];
public ICollection<MarshalGuard> MarshalGuards { get; set; } = [];
public ICollection<Admonition> Admonitions { get; set; } = [];
public ICollection<Note> Notes { get; set; } = [];
}