vknet_vk/VkNet/Model/SmsNotification.cs
Инютин Максим Николаевич 932d99d61a Применяет стили кода
2022-08-02 00:22:12 +03:00

41 lines
No EOL
743 B
C#

using System;
using Newtonsoft.Json;
namespace VkNet.Model;
/// <summary>
/// API SmsNotification object.
/// </summary>
[Serializable]
public class SmsNotification
{
/// <summary>
/// User ID
/// </summary>
[JsonProperty("user_id")]
public int? UserId { get; set; }
/// <summary>
/// Date when message has been sent in Unixtime
/// </summary>
[JsonProperty("date")]
public int? Date { get; set; }
/// <summary>
/// Application ID
/// </summary>
[JsonProperty("app_id")]
public int? AppId { get; set; }
/// <summary>
/// Notification ID
/// </summary>
[JsonProperty("id")]
public int? Id { get; set; }
/// <summary>
/// Messsage text
/// </summary>
[JsonProperty("message")]
public string Message { get; set; }
}