mirror of
https://github.com/vknet/vk.git
synced 2026-07-11 00:48:27 +00:00
23 lines
No EOL
361 B
C#
23 lines
No EOL
361 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// API Level object.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class SecureLevel
|
|
{
|
|
/// <summary>
|
|
/// Level
|
|
/// </summary>
|
|
[JsonProperty("level")]
|
|
public int? LevelCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// User ID
|
|
/// </summary>
|
|
[JsonProperty("uid")]
|
|
public ulong? Uid { get; set; }
|
|
} |