2021-09-05 20:54:44 +01:00
|
|
|
|
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; }
|
2023-01-03 10:45:37 +00:00
|
|
|
|
public bool availableInRaid { get;set;}
|
2021-09-05 20:54:44 +01:00
|
|
|
|
public string avatar { get; set; }
|
2023-01-03 10:45:37 +00:00
|
|
|
|
public object items_buy { get;set;}
|
|
|
|
|
public object items_buy_prohibited { get; set; }
|
2021-09-05 20:54:44 +01:00
|
|
|
|
public int balance_rub { get; set; }
|
|
|
|
|
public int balance_dol { get; set; }
|
|
|
|
|
public int balance_eur { get; set; }
|
|
|
|
|
public bool unlockedByDefault { get; set; }
|
2023-01-03 10:45:37 +00:00
|
|
|
|
public object discount { get; set; }
|
2021-09-05 20:54:44 +01:00
|
|
|
|
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; }
|
2023-01-03 10:45:37 +00:00
|
|
|
|
public object quality { get; set; }
|
2021-09-05 20:54:44 +01:00
|
|
|
|
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; }
|
2021-09-05 20:54:44 +01:00
|
|
|
|
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; }
|
2021-09-05 20:54:44 +01:00
|
|
|
|
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; }
|
|
|
|
|
}
|
|
|
|
|
}
|