mirror of
https://github.com/vknet/vk.git
synced 2026-07-27 00:33:31 +00:00
* Убрал неиспользуемые зависимости * Удаляет FromJson из категории Donut --------- Co-authored-by: Инютин Максим Николаевич <inyutin_maxim@mail.ru>
36 lines
No EOL
837 B
C#
36 lines
No EOL
837 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Subscriptions
|
|
/// </summary>
|
|
[Serializable]
|
|
public class SubscriptionsInfo
|
|
{
|
|
/// <summary>
|
|
/// Массив объектов подписок.
|
|
/// </summary>
|
|
[JsonProperty("subscritions")]
|
|
public IEnumerable<Subscription> Subscriptions { get; set; }
|
|
|
|
/// <summary>
|
|
/// Количество подписок.
|
|
/// </summary>
|
|
[JsonProperty("count")]
|
|
public long Count { get; set; }
|
|
|
|
/// <summary>
|
|
/// Массив объектов пользователей.
|
|
/// </summary>
|
|
[JsonProperty("profiles")]
|
|
public IEnumerable<User> Profiles { get; set; }
|
|
|
|
/// <summary>
|
|
/// Массив объектов сообществ.
|
|
/// </summary>
|
|
[JsonProperty("groups")]
|
|
public IEnumerable<Group> Groups { get; set; }
|
|
} |