mirror of
https://github.com/vknet/vk.git
synced 2026-07-12 09:28:26 +00:00
23 lines
No EOL
479 B
C#
23 lines
No EOL
479 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Вариант ответа
|
|
/// </summary>
|
|
[Serializable]
|
|
public class QuestionOption
|
|
{
|
|
/// <summary>
|
|
/// Ключ ответа (необязательно)
|
|
/// </summary>
|
|
[JsonProperty("key", NullValueHandling = NullValueHandling.Ignore)]
|
|
public string Key { get; set; }
|
|
|
|
/// <summary>
|
|
/// Текст ответа
|
|
/// </summary>
|
|
[JsonProperty("label")]
|
|
public string Label { get; set; }
|
|
} |