mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
15 lines
435 B
C#
15 lines
435 B
C#
namespace NexusForever.Shared.GameTable.Model
|
|
{
|
|
public class RewardPropertyPremiumModifierEntry
|
|
{
|
|
public uint Id;
|
|
public uint PremiumSystemEnum;
|
|
public uint Tier;
|
|
public uint RewardPropertyId;
|
|
public uint RewardPropertyData;
|
|
public uint ModifierValueInt;
|
|
public float ModifierValueFloat;
|
|
public uint EntitlementIdModifierCount;
|
|
public uint Flags;
|
|
}
|
|
}
|