0
0
mirror of https://github.com/sp-tarkov/loot-dump-processor.git synced 2025-02-13 08:30:46 -05:00
loot-dump-processor/Model/Input/TraderServerSettings.cs

12 lines
350 B
C#
Raw Normal View History

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