mirror of
https://github.com/vknet/vk.git
synced 2026-07-11 17:08:26 +00:00
41 lines
No EOL
763 B
C#
41 lines
No EOL
763 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Authorization error.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class VkAuthError
|
|
{
|
|
/// <summary>
|
|
/// Error.
|
|
/// </summary>
|
|
[JsonProperty("error")]
|
|
public string Error { get; set; }
|
|
|
|
/// <summary>
|
|
/// Error type.
|
|
/// </summary>
|
|
[JsonProperty("error_type")]
|
|
public string ErrorType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Error description.
|
|
/// </summary>
|
|
[JsonProperty("error_description")]
|
|
public string ErrorDescription { get; set; }
|
|
|
|
/// <summary>
|
|
/// Captcha id.
|
|
/// </summary>
|
|
[JsonProperty("captcha_sid")]
|
|
public ulong? CaptchaSid { get; set; }
|
|
|
|
/// <summary>
|
|
/// Captcha image Uri.
|
|
/// </summary>
|
|
[JsonProperty("captcha_img")]
|
|
public Uri CaptchaImg { get; set; }
|
|
} |