New internal MessageDeleted event handler for better control and form use.

This commit is contained in:
FlorianDahn
2021-03-01 22:50:42 +01:00
parent 72d94df907
commit 26c4f479fa
2 changed files with 45 additions and 0 deletions
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Telegram.Bot.Types;
namespace TelegramBotBase.Args
{
public class MessageDeletedEventArgs
{
public int MessageId
{
get;set;
}
public MessageDeletedEventArgs(int messageId)
{
this.MessageId = messageId;
}
}
}