0
0
mirror of https://github.com/sp-tarkov/loot-dump-processor.git synced 2025-02-13 09:50:44 -05:00

17 lines
509 B
C#

using System.Text.Json.Serialization;
using LootDumpProcessor.Model.Tarkov;
using Newtonsoft.Json;
namespace LootDumpProcessor.Model.Input
{
public class ColliderParams
{
[JsonProperty("Parent", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("Parent")]
public string? Parent { get; set; }
[JsonProperty("_props", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("_props")]
public Props? Props { get; set; }
}
}