using System;
using Newtonsoft.Json;
namespace VkNet.Model;
///
/// Вариант ответа
///
[Serializable]
public class QuestionOption
{
///
/// Ключ ответа (необязательно)
///
[JsonProperty("key", NullValueHandling = NullValueHandling.Ignore)]
public string Key { get; set; }
///
/// Текст ответа
///
[JsonProperty("label")]
public string Label { get; set; }
}