Files
Nebula-Auth/SteamLibForked/Web/Models/Account/WalletSchema.cs
T
2024-02-01 01:21:56 +02:00

32 lines
788 B
C#

using Newtonsoft.Json;
#pragma warning disable CS8618
namespace SteamLib.Web.Models.Account;
public class WalletInfoSchema
{
[JsonProperty("success")]
public int Success { get; set; }
[JsonProperty("currency")]
public string Currency { get; set; }
[JsonProperty("country_code")]
public string CountryCode { get; set; }
[JsonProperty("alternate_min_amount")]
public bool AlternateMinAmount { get; set; }
[JsonProperty("amounts")]
public List<int> Amounts { get; set; }
[JsonProperty("related_trans_type")]
public bool RelatedTransType { get; set; }
[JsonProperty("related_trainsid")]
public bool RelatedTrainsId { get; set; }
[JsonProperty("user_wallet")]
public UserWalletSchema UserWalletSchema { get; set; }
}