LootDumpProcessor/Model/Input/ColliderParams.cs

17 lines
509 B
C#
Raw Permalink Normal View History

using System.Text.Json.Serialization;
using LootDumpProcessor.Model.Tarkov;
2023-08-12 19:08:38 +01:00
using Newtonsoft.Json;
namespace LootDumpProcessor.Model.Input
{
public class ColliderParams
{
[JsonProperty("Parent", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("Parent")]
2023-08-12 19:08:38 +01:00
public string? Parent { get; set; }
[JsonProperty("_props", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("_props")]
public Props? Props { get; set; }
}
}