remove dupe class

This commit is contained in:
Chomp 2022-01-12 15:05:05 +00:00
parent 2d4af091aa
commit b5cacadf66

View File

@ -1,41 +0,0 @@
using System.Collections.Generic;
namespace AssortValidator.Common.Models
{
public class LiveAssortRoot
{
public int err { get; set; }
public object errmsg { get; set; }
public LiveAssort data { get; set; }
}
public class LiveAssort
{
public int nextResupply { get; set; }
public List<Item> items { get; set; }
public Dictionary<string, List<List<BarterDetails>>> barter_scheme { get; set; }
public Dictionary<string, int> loyal_level_items { get; set; }
public class BarterDetails
{
public double count { get; set; }
public string _tpl { get; set; }
}
public class Item
{
public string _id { get; set; }
public string _tpl { get; set; }
public string parentId { get; set; }
public string slotId { get; set; }
public Upd upd { get; set; }
}
public class Upd
{
public int? BuyRestrictionMax { get; set; }
public int BuyRestrictionCurrent { get; set; }
public int StackObjectsCount { get; set; }
}
}
}