mirror of
https://github.com/vknet/vk.git
synced 2026-08-22 23:03:37 +00:00
24 lines
No EOL
495 B
C#
24 lines
No EOL
495 B
C#
using System;
|
|
using System.Collections.ObjectModel;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Права токена
|
|
/// </summary>
|
|
[Serializable]
|
|
public class TokenPermissionsResult
|
|
{
|
|
/// <summary>
|
|
/// Битовая масска
|
|
/// </summary>
|
|
[JsonProperty("mask")]
|
|
public long Mask { get; set; }
|
|
|
|
/// <summary>
|
|
/// Права доступа
|
|
/// </summary>
|
|
[JsonProperty("permissions")]
|
|
public ReadOnlyCollection<TokenPermission> Permissions { get; set; }
|
|
} |