Make fields more accurate

This commit is contained in:
Chomp 2023-01-09 22:51:49 +00:00
parent ae9a93426a
commit 3938322bf3

View File

@ -99,6 +99,7 @@ namespace QuestValidator.Models
public bool? doNotResetIfCounterCompleted { get; set; } public bool? doNotResetIfCounterCompleted { get; set; }
public object value { get; set; } public object value { get; set; }
public int? availableAfter { get; set; } public int? availableAfter { get; set; }
public int? dispersion { get; set; }
public string compareMethod { get;set;} public string compareMethod { get;set;}
public List<object> visibilityConditions { get; set; } public List<object> visibilityConditions { get; set; }
public SkillCondition baseAccuracy { get;set;} public SkillCondition baseAccuracy { get;set;}
@ -147,7 +148,7 @@ namespace QuestValidator.Models
{ {
public string _id { get; set; } public string _id { get; set; }
public string _tpl { get; set; } public string _tpl { get; set; }
public QuestRewardUpd upd { get; set; } public object upd { get; set; }
public string parentId { get; set; } public string parentId { get; set; }
public string slotId { get; set; } public string slotId { get; set; }
} }