Chomp 055a6f901a Dump cleaner now handles:
trader base files
Location base files
2022-01-09 20:33:24 +00:00

27 lines
979 B
C#

// 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; }
public int 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; }
}