31 lines
667 B
C#
Raw Permalink Normal View History

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; }
}
}