mirror of
https://github.com/vknet/vk.git
synced 2026-07-30 02:03:32 +00:00
* Update azure-pipelines.yml * Предупреждения Qodana * Удаляет неиспользуемый токен отмены * Предупреждения Qodana * Предупреждения Qodana * Предупреждения Qodana latest revert * Добавляет Template в объект Message * Возвращает токен отмены
29 lines
No EOL
674 B
C#
29 lines
No EOL
674 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Результат метода Notifications.SendMessage
|
|
/// </summary>
|
|
[Serializable]
|
|
public class NotificationsSendMessageResult
|
|
{
|
|
/// <summary>
|
|
/// Идентификатор пользователя
|
|
/// </summary>
|
|
[JsonProperty("user_id")]
|
|
public ulong UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Статус уведомления
|
|
/// </summary>
|
|
[JsonProperty("status")]
|
|
public bool Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// Ошибка отправки уведомления
|
|
/// </summary>
|
|
[JsonProperty("error")]
|
|
public NotificationsSendMessageError Error { get; set; }
|
|
} |