mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
14 lines
382 B
C#
14 lines
382 B
C#
namespace NexusForever.Shared.GameTable.Model
|
|
{
|
|
public class EntitlementEntry
|
|
{
|
|
public uint Id;
|
|
public uint MaxCount;
|
|
public uint Flags;
|
|
public uint Spell4IdPersistentBuff;
|
|
public uint CharacterTitleId;
|
|
public uint LocalizedTextIdName;
|
|
public uint LocalizedTextIdDescription;
|
|
public string ButtonIcon;
|
|
}
|
|
}
|