mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
18 lines
457 B
C#
18 lines
457 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ConanData
|
|
{
|
|
public class GuildData
|
|
{
|
|
public long GuildId { get; set; }
|
|
public string GuildName { get; set; }
|
|
public long? OwnerId { get; set; }
|
|
public virtual ICollection<PlayerData> Players { get; set; }
|
|
public virtual PlayerData Owner { get; set; }
|
|
|
|
public GuildData()
|
|
{
|
|
this.Players = new HashSet<PlayerData>();
|
|
}
|
|
}
|
|
}
|