mirror of
https://github.com/vknet/vk.git
synced 2026-07-11 08:58:26 +00:00
23 lines
No EOL
381 B
C#
23 lines
No EOL
381 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Count Value
|
|
/// </summary>
|
|
[Serializable]
|
|
public class CountValue
|
|
{
|
|
/// <summary>
|
|
/// Количество
|
|
/// </summary>
|
|
[JsonProperty("count")]
|
|
public long Count { get; set; }
|
|
|
|
/// <summary>
|
|
/// Значение
|
|
/// </summary>
|
|
[JsonProperty("value")]
|
|
public string Value { get; set; }
|
|
} |