18 lines
569 B
C#

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; }
public string Currency { get; set; }
public int PricePoints { get; set; }
public string TemplateId { get; set; }
public int TraderPrice { get; set; }
public string Trader { get; set; }
}
}