27 lines
982 B
C#
Raw Normal View History

// read contents of input folder
public class Trader
{
public string _id { get; set; }
public bool customization_seller { get; set; }
public string name { get; set; }
public string surname { get; set; }
public string nickname { get; set; }
public string location { get; set; }
public string avatar { get; set; }
public int balance_rub { get; set; }
public int balance_dol { get; set; }
public int balance_eur { get; set; }
public bool unlockedByDefault { get; set; }
2022-07-09 18:18:50 +01:00
public string discount { get; set; }
public int discount_end { get; set; }
public bool buyer_up { get; set; }
public string currency { get; set; }
public int nextResupply { get; set; }
public object repair { get; set; }
public object insurance { get; set; }
public bool medic { get; set; }
public int gridHeight { get; set; }
public List<object> loyaltyLevels { get; set; }
public List<string> sell_category { get; set; }
}