2023-04-12 13:23:31 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MarketPriceLookup.Common.Helpers
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public class TarkovDevResponse
|
|
|
|
|
{
|
|
|
|
|
public Data data { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Data
|
|
|
|
|
{
|
|
|
|
|
public List<Item> items { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Item
|
|
|
|
|
{
|
|
|
|
|
public string name { get; set; }
|
|
|
|
|
public int avg24hPrice { get; set; }
|
2023-06-29 12:36:11 +01:00
|
|
|
|
public double? changeLast48hPercent { get; set; }
|
2023-04-12 13:23:31 +01:00
|
|
|
|
public string id { get; set; }
|
|
|
|
|
public HistoricalPrice[] historicalPrices { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class HistoricalPrice
|
|
|
|
|
{
|
|
|
|
|
public int price { get; set; }
|
|
|
|
|
public string timestamp { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|