Update missing type in model (Fixes #572)

This commit is contained in:
Archangel
2025-08-27 13:17:25 +02:00
parent 7312c7264a
commit f9708c00aa
@@ -14,4 +14,10 @@ public record CompleteQuestRequestData : InventoryBaseActionRequestData
[JsonPropertyName("removeExcessItems")] [JsonPropertyName("removeExcessItems")]
public bool? RemoveExcessItems { get; set; } public bool? RemoveExcessItems { get; set; }
/// <summary>
/// This is only set if the quest is repeatable
/// </summary>
[JsonPropertyName("type")]
public string? Type { get; set; }
} }