Chomp 2737cb6fc7 move to .net 6
output new file with live + trader price
2022-01-04 19:56:05 +00:00

16 lines
481 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 string TemplateId { get; set; }
public int TraderPrice { get; set; }
}
}