Files
Telegrator/Telegrator.Hosting/Components/ITelegramBotHost.cs
T

15 lines
351 B
C#
Raw Normal View History

2025-07-24 23:19:59 +04:00
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
{
}
}