17 lines
626 B
C#
17 lines
626 B
C#
using JOBot.Proto;
|
|
using Telegram.Bot;
|
|
using Telegram.Bot.Types;
|
|
|
|
namespace JOBot.TClient.Commands;
|
|
|
|
public interface IAuthorizedTelegramCommand : ITelegramCommand
|
|
{
|
|
public Task ExecuteAsync(Update update, GetUserResponse user, CancellationToken ct);
|
|
|
|
/// <exception cref="UnauthorizedAccessException">Throws if you try to use ITelegramCommand.ExecuteAsync
|
|
/// instead of IAuthorizedTelegramCommand.ExecuteAsync</exception>
|
|
Task ITelegramCommand.ExecuteAsync(Update update, CancellationToken ct)
|
|
{
|
|
throw new UnauthorizedAccessException("You do not have permission to access this command.");
|
|
}
|
|
} |