2018-05-22 22:49:59 +02:00

40 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Globalization;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace SteamStorefrontAPI
{
public class Sub
{
[JsonProperty("packageid")]
public int Packageid { get; set; }
[JsonProperty("percent_savings_text")]
public string PercentSavingsText { get; set; }
[JsonProperty("percent_savings")]
public int PercentSavings { get; set; }
[JsonProperty("option_text")]
public string OptionText { get; set; }
[JsonProperty("option_description")]
public string OptionDescription { get; set; }
[JsonProperty("can_get_free_license")]
public string CanGetFreeLicense { get; set; }
[JsonProperty("is_free_license")]
public bool IsFreeLicense { get; set; }
[JsonProperty("price_in_cents_with_discount")]
public long PriceInCentsWithDiscount { get; set; }
}
}