Added new properties to trader base.json model

This commit is contained in:
Chomp
2025-08-21 10:52:00 +01:00
parent 600a9c12b1
commit 3397164ac9
@@ -84,8 +84,14 @@ public record TraderBase
[JsonPropertyName("items_sell")]
public Dictionary<string, ItemSellData>? ItemsSell { get; set; }
[JsonPropertyName("isAvailableInPVE")]
public bool IsAvailableInPVE { get; set; }
[JsonPropertyName("isCanTransferItems")]
public bool? IsCanTransferItems { get; set; }
public bool IsCanTransferItems { get; set; }
[JsonPropertyName("isCanTransferItemsFromPve")]
public bool IsCanTransferItemsFromPve { get; set; }
[JsonPropertyName("transferableItems")]
public ItemBuyData? TransferableItems { get; set; }
@@ -99,11 +105,14 @@ public record TraderBase
[JsonPropertyName("loyaltyLevels")]
public List<TraderLoyaltyLevel>? LoyaltyLevels { get; set; }
[JsonPropertyName("mainDialogue")]
public string? MainDialogue { get; set; }
[JsonPropertyName("medic")]
public bool? Medic { get; set; }
[JsonPropertyName("name")]
public string? Name { get; set; }
public string Name { get; set; }
// Confirmed in client
[JsonPropertyName("nextResupply")]