mirror of
https://github.com/vknet/vk.git
synced 2026-07-19 21:03:28 +00:00
27 lines
No EOL
456 B
C#
27 lines
No EOL
456 B
C#
using Newtonsoft.Json;
|
|
using VkNet.Utils.JsonConverter;
|
|
|
|
namespace VkNet.Enums.StringEnums;
|
|
|
|
/// <summary>
|
|
/// Доступность значения.
|
|
/// </summary>
|
|
[StringEnum]
|
|
[JsonConverter(typeof(TolerantStringEnumConverter))]
|
|
public enum StoryObjectState
|
|
{
|
|
/// <summary>
|
|
/// Доступно.
|
|
/// </summary>
|
|
On,
|
|
|
|
/// <summary>
|
|
/// Недоступно.
|
|
/// </summary>
|
|
Off,
|
|
|
|
/// <summary>
|
|
/// Недоступно.
|
|
/// </summary>
|
|
Hidden
|
|
} |