vknet_vk/VkNet/Enums/StringEnums/VideoView.cs
2023-08-14 14:44:05 +03:00

32 lines
No EOL
834 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 Newtonsoft.Json;
using VkNet.Utils.JsonConverter;
namespace VkNet.Enums.StringEnums;
/// <summary>
/// предпочтительный способ отображения контента
/// </summary>
[StringEnum]
[JsonConverter(typeof(TolerantStringEnumConverter))]
public enum VideoView
{
/// <summary>
/// горизонтально с дополнительной информацией
/// </summary>
Horizontal,
/// <summary>
/// оризонтально без дополнительной информации
/// </summary>
HorizontalCompact,
/// <summary>
/// вертикально с дополнительной информацией
/// </summary>
Vertical,
/// <summary>
/// вертикально с дополнительной информацией
/// </summary>
VerticalCompact
}