From 19c65814b2f0ef46a4e901a05c13e22fc4e58077 Mon Sep 17 00:00:00 2001 From: Chomp Date: Thu, 30 Jun 2022 12:12:10 +0100 Subject: [PATCH] Update quest object to match live --- QuestValidator.Models/Input/Quest.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/QuestValidator.Models/Input/Quest.cs b/QuestValidator.Models/Input/Quest.cs index 5f5e700..5b3f6f6 100644 --- a/QuestValidator.Models/Input/Quest.cs +++ b/QuestValidator.Models/Input/Quest.cs @@ -14,6 +14,7 @@ namespace QuestValidator.Models public string QuestName { get; set; } public string _id { get; set; } public bool canShowNotificationsInGame { get; set; } + public string changeQuestMessageText { get;set;} public Conditions conditions { get; set; } public string description { get;set;} public string failMessageText { get; set; } @@ -31,6 +32,8 @@ namespace QuestValidator.Models public string successMessageText { get; set; } public string templateId { get; set; } public Rewards rewards { get; set; } + + public string? side { get; set; } } public class Conditions @@ -131,6 +134,7 @@ namespace QuestValidator.Models public int index { get; set; } public string target { get; set; } public bool? unknown { get; set; } + public bool? findInRaid {get; set;} public List items { get; set; } public int? loyaltyLevel { get; set; } public string traderId { get; set; }