mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 00:18:28 +00:00
30 lines
No EOL
547 B
C#
30 lines
No EOL
547 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
using VkNet.Enums.StringEnums;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// API LinkStatus object.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class LinkStatus
|
|
{
|
|
/// <summary>
|
|
/// URL
|
|
/// </summary>
|
|
[JsonProperty("redirect_url")]
|
|
public string RedirectUrl { get; set; }
|
|
|
|
/// <summary>
|
|
/// Link status
|
|
/// </summary>
|
|
[JsonProperty("status")]
|
|
public LinkStatusType? Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// Reject reason
|
|
/// </summary>
|
|
[JsonProperty("description")]
|
|
public string Description { get; set; }
|
|
} |