0
0
mirror of https://github.com/sp-tarkov/loot-dump-processor.git synced 2025-02-13 07:10:45 -05:00

12 lines
302 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
using Newtonsoft.Json;
namespace LootDumpProcessor.Model.Input
{
public class Standing
{
[JsonProperty("Value", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("Value")]
public float? Value { get; set; }
}
}