nexusforever/Source/NexusForever.Database.Character/Model/GuildDataModel.cs

15 lines
453 B
C#
Raw Permalink Normal View History

namespace NexusForever.Database.Character.Model
{
public class GuildDataModel
{
public ulong Id { get; set; }
public string MessageOfTheDay { get; set; }
public string AdditionalInfo { get; set; }
public ushort BackgroundIconPartId { get; set; }
public ushort ForegroundIconPartId { get; set; }
public ushort ScanLinesPartId { get; set; }
public GuildModel Guild { get; set; }
}
}