using System; using Newtonsoft.Json; using VkNet.Enums; namespace VkNet.Model; /// /// Ошибка отправки уведомления /// [Serializable] public class NotificationsSendMessageError { /// /// Код ошибки /// [JsonProperty("code")] public NotificationsSendMessageCode Code { get; set; } /// /// Описание ошибки /// [JsonProperty("description")] public string Description { get; set; } }