Files
Telegrator/Telegrator.Hosting/Components/ITelegramBotHost.cs
T
Rikitav 78c7f41489 Removed doubled filters variations for reply-chain message filtering
Instead using MessageRepliedAttribute to filter messages in reply-chain
Old types renamed to new framework name
2025-07-25 01:26:32 +04:00

15 lines
345 B
C#

using Microsoft.Extensions.Hosting;
using Telegrator;
namespace Telegrator.Hosting.Components
{
/// <summary>
/// Interface for Telegram bot hosts.
/// Combines host application capabilities with reactive Telegram bot functionality.
/// </summary>
public interface ITelegramBotHost : IHost, ITelegratorBot
{
}
}