mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 03:10:46 -05:00
11 lines
305 B
C#
11 lines
305 B
C#
using System.Text.Json.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace LootDumpProcessor.Model.Output;
|
|
|
|
public class StaticDistribution : AbstractDistribution
|
|
{
|
|
[JsonProperty("tpl", NullValueHandling = NullValueHandling.Ignore)]
|
|
[JsonPropertyName("tpl")]
|
|
public string? Tpl { get; set; }
|
|
} |