using System; using Newtonsoft.Json; namespace VkNet.Model; /// /// Количество /// [Serializable] public class AmountObject { /// /// Количество /// [JsonProperty("amount")] public long Amount { get; set; } /// /// Валюта /// [JsonProperty("currency")] public Currency Currency { get; set; } /// /// Текст /// [JsonProperty("text")] public string Text { get; set; } }