mirror of
https://github.com/vknet/vk.git
synced 2026-07-11 00:48:27 +00:00
23 lines
No EOL
431 B
C#
23 lines
No EOL
431 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace VkNet.Model;
|
|
|
|
/// <summary>
|
|
/// Событие стикера
|
|
/// </summary>
|
|
[Serializable]
|
|
public class EventSticker
|
|
{
|
|
/// <summary>
|
|
/// Идентификатор пользователя
|
|
/// </summary>
|
|
[JsonProperty("user_id")]
|
|
public ulong UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Статус
|
|
/// </summary>
|
|
[JsonProperty("status")]
|
|
public string Status { get; set; }
|
|
} |