mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 08:30:46 -05:00
16 lines
511 B
C#
16 lines
511 B
C#
![]() |
using System.Text.Json.Serialization;
|
|||
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace LootDumpProcessor.Model.Output
|
|||
|
{
|
|||
|
public class ItemCountDistribution
|
|||
|
{
|
|||
|
[JsonProperty("count", NullValueHandling = NullValueHandling.Ignore)]
|
|||
|
[JsonPropertyName("count")]
|
|||
|
public int? Count { get; set; }
|
|||
|
|
|||
|
[JsonProperty("relativeProbability", NullValueHandling = NullValueHandling.Ignore)]
|
|||
|
[JsonPropertyName("relativeProbability")]
|
|||
|
public int? RelativeProbability { get; set; }
|
|||
|
}
|
|||
|
}
|