/
d.alekseev
/
SmartMenuBot
Обзор
Документация
Войти
/
d.alekseev
/
SmartMenuBot
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
ConsoleBot/Core/Services/Infrastructure/DefaultLimitsNotifier.cs
18 строк
593 B
d.alekseev
feat: миграция на Telegram.Bot с reply-клавиатурами и меню команд
08 фев 2026, 17:00
08 фев 2026, 17:00
054ee94
Код
Авторство
О чём код?
using Telegram.Bot; using SmartMenuBot.Core.Services.Interfaces; using SmartMenuBot.TelegramBot.Commands; namespace SmartMenuBot.Core.Services.Infrastructure { public class DefaultLimitsNotifier(ITelegramBotClient botClient) : ILimitsNotifier { public async Task NotifyAsync(CommandContext context, string message) { if (context.Update.Message == null) return; await botClient.SendMessage( context.Update.Message.Chat.Id, message, cancellationToken: context.CancellationToken); } } }