mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
19 lines
577 B
C#
19 lines
577 B
C#
namespace NexusForever.Shared.GameTable.Model
|
|
{
|
|
public class MatchingRandomRewardEntry
|
|
{
|
|
public uint Id;
|
|
public uint MatchTypeEnum;
|
|
public uint Item2Id;
|
|
public uint ItemCount;
|
|
public uint CurrencyTypeId;
|
|
public uint CurrencyValue;
|
|
public uint XpEarned;
|
|
public uint Item2IdLevelScale;
|
|
public uint ItemCountLevelScale;
|
|
public uint CurrencyTypeIdLevelScale;
|
|
public uint CurrencyValueLevelScale;
|
|
public uint XpEarnedLevelScale;
|
|
public uint WorldDifficultyEnum;
|
|
}
|
|
}
|