LootDumpProcessor/Model/Input/TraderServices.cs
Refringe a320d24ee4
Changes for 3.10 (32160)
- Updates the Model/Input classes to match the new export JSON structure
- Updates references to model structure
- Updates SevenZipSharp package
- Adds a few null checks
2024-08-22 15:33:27 -04:00

36 lines
1.4 KiB
C#

using System.Text.Json.Serialization;
using Newtonsoft.Json;
namespace LootDumpProcessor.Model.Input
{
public class TraderServices
{
[JsonProperty("ExUsecLoyalty", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("ExUsecLoyalty")]
public TraderService? ExUsecLoyalty { get; set; }
[JsonProperty("ZryachiyAid", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("ZryachiyAid")]
public TraderService? ZryachiyAid { get; set; }
[JsonProperty("CultistsAid", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("CultistsAid")]
public TraderService? CultistsAid { get; set; }
[JsonProperty("PlayerTaxi", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("PlayerTaxi")]
public TraderService? PlayerTaxi { get; set; }
[JsonProperty("BtrItemsDelivery", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("BtrItemsDelivery")]
public TraderService? BtrItemsDelivery { get; set; }
[JsonProperty("BtrBotCover", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("BtrBotCover")]
public TraderService? BtrBotCover { get; set; }
[JsonProperty("TransitItemsDelivery", NullValueHandling = NullValueHandling.Ignore)]
[JsonPropertyName("TransitItemsDelivery")]
public TraderService? TransitItemsDelivery { get; set; }
}
}