update quest model

This commit is contained in:
Chomp 2022-01-12 15:07:32 +00:00
parent d149724ae7
commit 52d2f769c1

View File

@ -18,7 +18,7 @@ namespace AssortValidator.Models
public string location { get; set; } public string location { get; set; }
public string image { get; set; } public string image { get; set; }
public string type { get; set; } public string type { get; set; }
public bool isKey { get; set; } public bool? isKey { get; set; }
public bool restartable { get; set; } public bool restartable { get; set; }
public bool instantComplete { get; set; } public bool instantComplete { get; set; }
public bool secretQuest { get; set; } public bool secretQuest { get; set; }
@ -87,7 +87,7 @@ namespace AssortValidator.Models
public class RewardStatus public class RewardStatus
{ {
public string value { get; set; } public object value { get; set; }
public string id { get; set; } public string id { get; set; }
public string type { get; set; } public string type { get; set; }
public int index { get; set; } public int index { get; set; }