31 lines
665 B
C#
31 lines
665 B
C#
|
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; }
|
|||
|
public double changeLast48hPercent { get; set; }
|
|||
|
public string id { get; set; }
|
|||
|
public HistoricalPrice[] historicalPrices { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class HistoricalPrice
|
|||
|
{
|
|||
|
public int price { get; set; }
|
|||
|
public string timestamp { get; set; }
|
|||
|
}
|
|||
|
}
|