using System; using Newtonsoft.Json; namespace VkNet.Model; /// /// Приватные настройки /// [Serializable] public class PrivacySettings { /// /// Настройки /// [JsonProperty("settings")] public PrivacySettingSetting[] Settings { get; set; } /// /// Секции /// [JsonProperty("sections")] public PrivacySettingsSection[] Sections { get; set; } /// /// Поддерживаемые категории /// [JsonProperty("supported_categories")] public SupportedCategories[] SupportedCategories { get; set; } }