mirror of
https://github.com/vknet/vk.git
synced 2026-07-10 00:18:28 +00:00
24 lines
No EOL
477 B
C#
24 lines
No EOL
477 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Список владельцев чата
|
|
/// </summary>
|
|
[Serializable]
|
|
public class PrivacyViewListOwners
|
|
{
|
|
/// <summary>
|
|
/// Категория
|
|
/// </summary>
|
|
[JsonProperty("allowed")]
|
|
public List<long> Allowed { get; set; }
|
|
|
|
/// <summary>
|
|
/// Категория
|
|
/// </summary>
|
|
[JsonProperty("excluded")]
|
|
public List<long> Excluded { get; set; }
|
|
} |