mirror of
https://github.com/vknet/vk.git
synced 2026-07-27 00:33:31 +00:00
24 lines
No EOL
491 B
C#
24 lines
No EOL
491 B
C#
using System;
|
|
using System.Collections.ObjectModel;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Приложение.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AppGetScopesResult
|
|
{
|
|
/// <summary>
|
|
/// Количество
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "count")]
|
|
public long Count { get; set; }
|
|
|
|
/// <summary>
|
|
/// Элементы
|
|
/// </summary>
|
|
[JsonProperty(propertyName: "items")]
|
|
public ReadOnlyCollection<AppGetScopes> Items { get; set; }
|
|
} |