using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TelegramBotBase.Enums
{
public enum eDeleteSide
{
///
/// Delete only messages from this bot.
///
BotOnly = 0,
///
/// Delete only user messages.
///
UserOnly = 1,
///
/// Delete all messages in this context.
///
Both = 2
}
}