Flagged other items as nullable

This commit is contained in:
Chomp
2025-01-22 17:36:46 +00:00
parent 56a4fbf102
commit d565ec8b33
2 changed files with 2 additions and 0 deletions
@@ -280,6 +280,7 @@ public record BotBaseInventory
public string? QuestStashItems { get; set; }
/** Key is hideout area enum numeric as string e.g. "24", value is area _id */
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonPropertyName("hideoutAreaStashes")]
public Dictionary<string, string>? HideoutAreaStashes { get; set; }
@@ -103,6 +103,7 @@ public record PmcDataRepeatableQuest
[JsonPropertyName("endTime")]
public long? EndTime { get; set; }
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonPropertyName("changeRequirement")]
public Dictionary<string?, ChangeRequirement?>? ChangeRequirement { get; set; }