mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
32 lines
845 B
C#
32 lines
845 B
C#
namespace Database.Entities;
|
|
|
|
public class Alliance : BaseEntity
|
|
{
|
|
public int Server { get; set; }
|
|
|
|
public required string Name { get; set; }
|
|
|
|
public required string Abbreviation { get; set; }
|
|
|
|
public DateTime CreatedOn { get; set; }
|
|
|
|
public DateTime? ModifiedOn { get; set; }
|
|
|
|
public string? ModifiedBy { get; set; }
|
|
|
|
public ApiKey? ApiKey { get; set; }
|
|
|
|
public ICollection<Player> Players { get; set; } = [];
|
|
|
|
public ICollection<User> Users { get; set; } = [];
|
|
|
|
public ICollection<DesertStorm> DesertStorms { get; set; } = [];
|
|
|
|
public ICollection<CustomEvent> CustomEvents { get; set; } = [];
|
|
|
|
public ICollection<MarshalGuard> MarshalGuards { get; set; } = [];
|
|
|
|
public ICollection<VsDuel> VsDuels { get; set; } = [];
|
|
|
|
public ICollection<ZombieSiege> ZombieSieges { get; set; } = [];
|
|
} |