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

27 lines
No EOL
576 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 MessageIntent
{
/// <summary>
/// Промо новость
/// </summary>
PromoNewsletter,
/// <summary>
/// Не промо новость.
/// </summary>
NonPromoNewsletter,
/// <summary>
/// Подтвержденное уведомление
/// </summary>
ConfirmedNotification
}