vknet_vk/VkNet/Enums/MainSection.cs
Timofei Jääger f8a5f30603
Добавляет CancellationToken(#1095 Merge without Generators) (#1492)
* Update README.md

* Update README.md

* Update README.md

* Merge vknet/vk:1095 without generators

* Обновляет зависимости
2023-03-31 17:24:11 +03:00

40 lines
No EOL
631 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 VkNet.Utils;
namespace VkNet.Enums;
/// <summary>
/// Информация о главной секции в сообществе
/// </summary>
public enum MainSection
{
/// <summary>
/// Главная секция отсутствует
/// </summary>
[VkNetDefaultValue]
NoSection = 0,
/// <summary>
/// Фотографии
/// </summary>
Photo,
/// <summary>
/// Обсуждения
/// </summary>
Post,
/// <summary>
/// Аудиозаписи
/// </summary>
Audio,
/// <summary>
/// Видеозаписи
/// </summary>
Video,
/// <summary>
/// Товары
/// </summary>
Goods
}