mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
16 lines
337 B
C#
16 lines
337 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 User User { get; set; }
|
|
|
|
public Guid UserId { get; set; }
|
|
|
|
public ICollection<Player> Players { get; set; }
|
|
} |