mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
27 lines
665 B
C#
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; } = [];
|
|
} |