using System; using Newtonsoft.Json; namespace VkNet.Model; /// /// Count Value /// [Serializable] public class CountValue { /// /// Количество /// [JsonProperty("count")] public long Count { get; set; } /// /// Значение /// [JsonProperty("value")] public string Value { get; set; } }