2024-04-16 18:29:40 +00:00
|
|
|
using System.Text.Json.Serialization;
|
2023-08-12 19:08:38 +01:00
|
|
|
using Newtonsoft.Json;
|
|
|
|
using YamlDotNet.Serialization;
|
|
|
|
|
|
|
|
namespace LootDumpProcessor.Model.Output.StaticContainer
|
|
|
|
{
|
|
|
|
public class StaticForced
|
|
|
|
{
|
|
|
|
[JsonProperty("containerId", NullValueHandling = NullValueHandling.Ignore)]
|
|
|
|
[JsonPropertyName("containerId")]
|
|
|
|
[YamlMember(Alias = "containerId")]
|
|
|
|
public string? ContainerId { get; set; }
|
|
|
|
|
|
|
|
[JsonProperty("itemTpl", NullValueHandling = NullValueHandling.Ignore)]
|
|
|
|
[JsonPropertyName("itemTpl")]
|
|
|
|
[YamlMember(Alias = "itemTpl")]
|
|
|
|
public string? ItemTpl { get; set; }
|
|
|
|
}
|
|
|
|
}
|