mirror of
https://github.com/vknet/vk.git
synced 2026-07-15 10:58:27 +00:00
17 lines
No EOL
372 B
C#
17 lines
No EOL
372 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Объект, содержащий поле count
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ObjectCount
|
|
{
|
|
/// <summary>
|
|
/// количество *** к странице внутри виджета
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "count")]
|
|
public long Count { get; set; }
|
|
} |