mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
13 lines
313 B
C#
13 lines
313 B
C#
|
|
using Kruzya.TelegramBot.Core.Attributes;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Kruzya.TelegramBot.CustomChatAddOns.Data
|
||
|
|
{
|
||
|
|
[AllowedSerializableType("pong")]
|
||
|
|
public class Pong
|
||
|
|
{
|
||
|
|
[JsonProperty("confirmation")]
|
||
|
|
public string Confirmation { get; set; } = Guid.NewGuid().ToString();
|
||
|
|
}
|
||
|
|
}
|