25 lines
527 B
C#
25 lines
527 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TelegramBotBase.Enums
|
|
{
|
|
public enum eDeleteSide
|
|
{
|
|
/// <summary>
|
|
/// Delete only messages from this bot.
|
|
/// </summary>
|
|
BotOnly = 0,
|
|
/// <summary>
|
|
/// Delete only user messages.
|
|
/// </summary>
|
|
UserOnly = 1,
|
|
/// <summary>
|
|
/// Delete all messages in this context.
|
|
/// </summary>
|
|
Both = 2
|
|
}
|
|
}
|