15 lines
351 B
C#
15 lines
351 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, IReactiveTelegramBot
|
|
{
|
|
|
|
}
|
|
}
|