33 lines
744 B
C#
Raw Permalink Normal View History

2021-09-07 17:45:49 +01:00
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<string, int> items { get; set;}
}
}