chomp
6e4c7abf73
Co-authored-by: Alex <alex@dm-me-for-questions.com> Reviewed-on: SPT-AKI/LootDumpProcessor#6
16 lines
593 B
C#
16 lines
593 B
C#
using System.Text.Json.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace LootDumpProcessor.Model.Output
|
|
{
|
|
public class StaticItemDistribution
|
|
{
|
|
[JsonProperty("itemcountDistribution", NullValueHandling = NullValueHandling.Ignore)]
|
|
[JsonPropertyName("itemcountDistribution")]
|
|
public List<ItemCountDistribution>? ItemCountDistribution { get; set; }
|
|
|
|
[JsonProperty("itemDistribution", NullValueHandling = NullValueHandling.Ignore)]
|
|
[JsonPropertyName("itemDistribution")]
|
|
public List<StaticDistribution>? ItemDistribution { get; set; }
|
|
}
|
|
} |