nexusforever/Source/NexusForever.Shared/GameTable/Model/RewardPropertyPremiumModifierEntry.cs
2018-10-09 12:03:35 +13:00

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;
}
}