mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
22 lines
723 B
C#
22 lines
723 B
C#
namespace NexusForever.Shared.GameTable.Model
|
|
{
|
|
public class LiveEventEntry
|
|
{
|
|
public uint Id;
|
|
public uint LiveEventTypeEnum;
|
|
public uint MaxValue;
|
|
public uint Flags;
|
|
public uint LiveEventCategoryEnum;
|
|
public uint LiveEventIdParent;
|
|
public uint LocalizedTextIdName;
|
|
public uint LocalizedTextIdSummary;
|
|
public string IconPath;
|
|
public string IconPathButton;
|
|
public string SpritePathTitle;
|
|
public string SpritePathBackground;
|
|
public uint CurrencyTypeIdEarned;
|
|
public uint LocalizedTextIdCurrencyEarnedTooltip;
|
|
public uint WorldLocation2IdExile;
|
|
public uint WorldLocation2IdDominion;
|
|
}
|
|
}
|