Files
Telegrator/Telegrator.Hosting.Web/Components/ITelegramBotWebHost.cs
T

16 lines
493 B
C#
Raw Normal View History

using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Routing;
using Telegrator.Hosting.Components;
2025-07-24 23:19:59 +04:00
namespace Telegrator.Hosting.Web.Components
{
/// <summary>
/// Interface for Telegram bot hosts with Webhook update receiving.
/// Combines wbe application capabilities with reactive Telegram bot functionality.
/// </summary>
public interface ITelegramBotWebHost : ITelegramBotHost, IEndpointRouteBuilder, IApplicationBuilder, IAsyncDisposable
2025-07-24 23:19:59 +04:00
{
}
}