2021-09-19 18:29:16 +01:00
|
|
|
|
namespace MarketPriceLookup
|
|
|
|
|
{
|
|
|
|
|
public class Prices
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public int Price { get; set; }
|
|
|
|
|
public int Average24hPrice { get; set; }
|
|
|
|
|
public int Average7DaysPrice { get; set; }
|
|
|
|
|
//public string Trader { get; set; }
|
|
|
|
|
//public int BuyPackPrice { get; set; }
|
2022-01-04 19:56:05 +00:00
|
|
|
|
public string Currency { get; set; }
|
2021-09-19 18:29:16 +01:00
|
|
|
|
public string TemplateId { get; set; }
|
2022-01-04 19:56:05 +00:00
|
|
|
|
public int TraderPrice { get; set; }
|
2023-02-05 11:57:03 +00:00
|
|
|
|
public string Trader { get; set; }
|
2021-09-19 18:29:16 +01:00
|
|
|
|
}
|
|
|
|
|
}
|