ace/Source/ACE.Adapter/GDLE/Models/StatMod.cs

18 lines
337 B
C#
Raw Permalink Normal View History

using System.Text.Json.Serialization;
namespace ACE.Adapter.GDLE.Models
{
public class StatMod
{
[JsonPropertyName("key")]
public uint Key { get; set; }
[JsonPropertyName("type")]
public uint Type { get; set; }
[JsonPropertyName("val")]
public double Val { get; set; }
}
}