mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
14 lines
325 B
C#
14 lines
325 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 ICollection<Player> Players { get; set; } = [];
|
|
|
|
public ICollection<User> Users { get; set; } = [];
|
|
} |