78c7f41489
Instead using MessageRepliedAttribute to filter messages in reply-chain Old types renamed to new framework name
15 lines
345 B
C#
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
|
|
{
|
|
|
|
}
|
|
}
|