25 lines
533 B
C#
25 lines
533 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TelegramBotBase.Enums
|
|
{
|
|
public enum eDeleteMode
|
|
{
|
|
/// <summary>
|
|
/// Don't delete any message.
|
|
/// </summary>
|
|
None = 0,
|
|
/// <summary>
|
|
/// Delete messages on every callback/action.
|
|
/// </summary>
|
|
OnEveryCall = 1,
|
|
/// <summary>
|
|
/// Delete on leaving this form.
|
|
/// </summary>
|
|
OnLeavingForm = 2
|
|
}
|
|
}
|