mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
11 lines
242 B
C#
11 lines
242 B
C#
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; }
|
|
} |