mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 00:18:28 +00:00
29 lines
No EOL
549 B
C#
29 lines
No EOL
549 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Секция
|
|
/// </summary>
|
|
[Serializable]
|
|
public class PrivacySettingsSection
|
|
{
|
|
/// <summary>
|
|
/// Наименование секции
|
|
/// </summary>
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Заголовок секции
|
|
/// </summary>
|
|
[JsonProperty("title")]
|
|
public string Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// Описание
|
|
/// </summary>
|
|
[JsonProperty("description")]
|
|
public string Description { get; set; }
|
|
} |