Files
telegram-bot/modules/CodeWatcher/DeleteRequest.cs
T

10 lines
222 B
C#
Raw Normal View History

using Telegram.Bot.Types;
namespace West.TelegramBot.CodeWatcher;
public class DeleteRequest
{
public ChatId ChatId { get; set; }
public int MessageId { get; set; }
public DateTime DeleteAt { get; set; }
}