mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 08:28:25 +00:00
17 lines
No EOL
266 B
C#
17 lines
No EOL
266 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Просмотры
|
|
/// </summary>
|
|
[Serializable]
|
|
public class Views
|
|
{
|
|
/// <summary>
|
|
/// Количество
|
|
/// </summary>
|
|
[JsonProperty("count")]
|
|
public long Count { get; set; }
|
|
} |