mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 00:18:28 +00:00
* Убрал неиспользуемые зависимости * Удаляет FromJson из категории Donut * Удаляет FromJson
29 lines
No EOL
504 B
C#
29 lines
No EOL
504 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Количество
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AmountObject
|
|
{
|
|
/// <summary>
|
|
/// Количество
|
|
/// </summary>
|
|
[JsonProperty("amount")]
|
|
public long Amount { get; set; }
|
|
|
|
/// <summary>
|
|
/// Валюта
|
|
/// </summary>
|
|
[JsonProperty("currency")]
|
|
public Currency Currency { get; set; }
|
|
|
|
/// <summary>
|
|
/// Текст
|
|
/// </summary>
|
|
[JsonProperty("text")]
|
|
public string Text { get; set; }
|
|
} |