mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
17 lines
467 B
C#
17 lines
467 B
C#
namespace NexusForever.Shared.GameTable.Model
|
|
{
|
|
public class PathRewardEntry
|
|
{
|
|
public uint Id;
|
|
public uint PathRewardTypeEnum;
|
|
public uint ObjectId;
|
|
public uint Spell4Id;
|
|
public uint Item2Id;
|
|
public uint Quest2Id;
|
|
public uint CharacterTitleId;
|
|
public uint PrerequisiteId;
|
|
public uint Count;
|
|
public uint PathRewardFlags;
|
|
public uint PathScientistScanBotProfileId;
|
|
}
|
|
}
|