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

11 lines
300 B
C#

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