mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 00:18:28 +00:00
24 lines
No EOL
525 B
C#
24 lines
No EOL
525 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Объект описывающий поступивший ответ.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class Feedback
|
|
{
|
|
/// <summary>
|
|
/// Количество
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "count")]
|
|
public long Count { get; set; }
|
|
|
|
/// <summary>
|
|
/// Массив объектов
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "items")]
|
|
public List<FeedbackItem> Items { get; set; }
|
|
} |