using System;
using Newtonsoft.Json;
namespace VkNet.Model;
///
/// Кнопка.
///
[Serializable]
public class Button
{
///
/// Название кнопки.
///
[JsonProperty("title")]
public string Title { get; set; }
///
/// Ссылка на которую ведет кнопка.
///
[JsonProperty("url")]
public Uri Uri { get; set; }
///
/// Действие
///
[JsonProperty("action")]
public LinkButtonAction Action { get; set; }
}