vknet_vk/VkNet/Model/LeadAnswerInfo.cs
Инютин Максим Николаевич 932d99d61a Применяет стили кода
2022-08-02 00:22:12 +03:00

23 lines
No EOL
524 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using Newtonsoft.Json;
namespace VkNet.Model;
/// <summary>
/// информация об ответах на вопросы — массив структур со следующими полями
/// </summary>
[Serializable]
public class LeadAnswerInfo
{
/// <summary>
/// ключ вопроса.
/// </summary>
[JsonProperty("key")]
public string Key { get; set; }
/// <summary>
/// ответ на вопрос
/// </summary>
[JsonProperty("answer")]
public LeadAnswer Answer { get; set; }
}