vknet_vk/VkNet/Model/WallGetObject.cs
Инютин Максим Николаевич 3b145a3327 Рефакторинг проекта
2025-09-09 01:02:47 +03:00

36 lines
No EOL
847 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.ObjectModel;
using Newtonsoft.Json;
namespace VkNet.Model;
/// <summary>
/// Результат выполнения запроса получения записей со стены
/// </summary>
[Serializable]
public class WallGetObject
{
/// <summary>
/// Общее количество записей на стене.
/// </summary>
[JsonProperty("count")]
public ulong TotalCount { get; set; }
/// <summary>
/// Посты.
/// </summary>
[JsonProperty("items")]
public ReadOnlyCollection<Post> WallPosts { get; set; }
/// <summary>
/// Профили.
/// </summary>
[JsonProperty("profiles")]
public ReadOnlyCollection<User> Profiles { get; set; }
/// <summary>
/// Группы.
/// </summary>
[JsonProperty("groups")]
public ReadOnlyCollection<Group> Groups { get; set; }
}