LootDumpProcessor/Model/Output/AmmoDistribution.cs

11 lines
300 B
C#
Raw Permalink Normal View History

using System.Text.Json.Serialization;
2023-08-12 19:08:38 +01:00
using Newtonsoft.Json;
namespace LootDumpProcessor.Model.Output;
public class AmmoDistribution : AbstractDistribution
{
[JsonProperty("tpl", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("tpl")]
public string? Tpl { get; set; }
}