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

15 lines
376 B
C#

using AchiesUtilities.Newtonsoft.JSON.Converters.Common;
using Newtonsoft.Json;
namespace SteamLib.Web.Models.Account;
#pragma warning disable CS8618
public class UserWalletSchema
{
[JsonProperty("amount")]
[JsonConverter(typeof(IntToStringConverter))]
public int Amount { get; set; }
[JsonProperty("currency")]
public string Currency { get; set; }
}