[core] move message auto-delete service from code-watcher to core

This commit is contained in:
Andriy
2023-01-23 13:12:38 +02:00
parent 261c1178b7
commit bbcdfff2b9
5 changed files with 16 additions and 13 deletions
+11
View File
@@ -0,0 +1,11 @@
using System;
using Telegram.Bot.Types;
namespace Kruzya.TelegramBot.Core.AutoDelete;
public class DeleteRequest
{
public ChatId ChatId { get; set; }
public int MessageId { get; set; }
public DateTime DeleteAt { get; set; }
}