using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Telegrator.MadiatorCore; namespace Telegrator.Hosting.Components { /// /// Interface for building Telegram bot hosts with dependency injection support. /// Combines host application building capabilities with handler collection functionality. /// public interface ITelegramBotHostBuilder : ICollectingProvider { /// /// Gets the set of key/value configuration properties. /// IConfigurationManager Configuration { get; } /// /// Gets a collection of logging providers for the application to compose. This is useful for adding new logging providers. /// ILoggingBuilder Logging { get; } /// /// Gets a collection of services for the application to compose. This is useful for adding user provided or framework provided services. /// IServiceCollection Services { get; } } }