mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 00:18:28 +00:00
23 lines
No EOL
413 B
C#
23 lines
No EOL
413 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Правила отказа
|
|
/// </summary>
|
|
[Serializable]
|
|
public class RejectionRules
|
|
{
|
|
/// <summary>
|
|
/// Заголовок
|
|
/// </summary>
|
|
[JsonProperty("title")]
|
|
public string Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// Параграфы
|
|
/// </summary>
|
|
[JsonProperty("paragraphs")]
|
|
public string Paragraphs { get; set; }
|
|
} |