Renamed PriceRaw to PriceCategory

This commit is contained in:
Garry Newman 2018-01-31 12:51:36 +00:00
parent 958d4675af
commit 6d78155ec6

View File

@ -57,9 +57,9 @@ public class Definition
public DateTime Modified { get; set; }
/// <summary>
/// The raw contets of price_category from the schema
/// The raw contents of price_category from the schema
/// </summary>
public string PriceRaw { get; set; }
public string PriceCategory { get; set; }
/// <summary>
/// The dollar price from PriceRaw
@ -74,7 +74,7 @@ public class Definition
public double LocalPrice { get; internal set; }
/// <summary>
/// Local Price but probably how you want to display it (ie, $3.99, <EFBFBD>1.99 etc )
/// Local Price but probably how you want to display it (ie, $3.99, £1.99 etc )
/// </summary>
public string LocalPriceFormatted { get; internal set; }