71 lines
2.5 KiB
C#
Raw Normal View History

using System.Collections.Generic;
namespace AssortGenerator.Models.Output
{
public class BaseRoot
{
public List<Base> data { get; set; }
}
public class Base
{
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 bool availableInRaid { get;set;}
public string avatar { get; set; }
public object items_buy { get;set;}
public object items_buy_prohibited { 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 object 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 Repair repair { get; set; }
public Insurance insurance { get; set; }
public bool medic { get; set; }
public int gridHeight { get; set; }
public List<LoyaltyLevel> loyaltyLevels { get; set; }
public List<string> sell_category { get; set; }
}
public class Repair
{
public bool availability { get; set; }
public object quality { get; set; }
public List<object> excluded_id_list { get; set; }
public List<object> excluded_category { get; set; }
public string currency { get; set; }
public int currency_coefficient { get; set; }
public int price_rate { get; set; }
}
public class Insurance
{
public bool availability { get; set; }
public int min_payment { get; set; }
2022-07-21 22:08:33 +01:00
public object min_return_hour { get; set; }
public object max_return_hour { get; set; }
public object max_storage_time { get; set; }
public List<object> excluded_category { get; set; }
}
public class LoyaltyLevel
{
public object minLevel { get; set; }
public object minSalesSum { get; set; }
public object minStanding { get; set; }
2022-07-21 22:08:33 +01:00
public object buy_price_coef { get; set; }
public object repair_price_coef { get; set; }
public object insurance_price_coef { get; set; }
public int exchange_price_coef { get; set; }
public object heal_price_coef { get; set; }
}
}