Files
telegram-bot/CustomChatAddOns/Data/NewMessage.cs
T

14 lines
314 B
C#
Raw Normal View History

2024-05-29 01:48:45 +03:00
using Kruzya.TelegramBot.Core.Attributes;
using Newtonsoft.Json;
using Telegram.Bot.Types;
namespace Kruzya.TelegramBot.CustomChatAddOns.Data
{
[AllowedSerializableType("new_message")]
public class NewMessage
{
[JsonProperty("message")]
public Message Message { get; set; }
}
}