mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
15 lines
397 B
C#
15 lines
397 B
C#
namespace NexusForever.Shared.GameTable.Model
|
|
{
|
|
public class ResourceConversionEntry
|
|
{
|
|
public uint Id;
|
|
public uint ResourceConversionTypeEnum;
|
|
public uint SourceId;
|
|
public uint SourceCount;
|
|
public uint TargetId;
|
|
public uint TargetCount;
|
|
public uint SurchargeId;
|
|
public uint SurchargeCount;
|
|
public uint Flags;
|
|
}
|
|
}
|