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 @@ namespace Facepunch.Steamworks
public DateTime Modified { get; set; } public DateTime Modified { get; set; }
/// <summary> /// <summary>
/// The raw contets of price_category from the schema /// The raw contents of price_category from the schema
/// </summary> /// </summary>
public string PriceRaw { get; set; } public string PriceCategory { get; set; }
/// <summary> /// <summary>
/// The dollar price from PriceRaw /// The dollar price from PriceRaw
@ -74,7 +74,7 @@ namespace Facepunch.Steamworks
public double LocalPrice { get; internal set; } public double LocalPrice { get; internal set; }
/// <summary> /// <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> /// </summary>
public string LocalPriceFormatted { get; internal set; } public string LocalPriceFormatted { get; internal set; }