using System; using System.Collections.Generic; using System.Text; namespace QuestValidator.Models { public class Items { public string _id { get; set; } public string _tpl { get; set; } public string parentId { get; set; } public string slotId { get; set; } public TraderUpd upd { get; set; } } public class TraderUpd { public bool UnlimitedCount { get; set; } public int StackObjectsCount { get; set; } public int? BuyRestrictionMax { get; set; } public int? BuyRestrictionCurrent { get; set; } } public class BarterScheme { } public class LoyaltyLevelItems { Dictionary items { get; set;} } }