mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-28 07:41:43 +00:00
15 lines
376 B
C#
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; }
|
|
} |