using Telegram.Bot.Types; namespace Telegrator.Configuration { /// /// Interface for providing bot information and metadata. /// Contains information about the bot user and provides initialization capabilities. /// public interface ITelegramBotInfo { /// /// Gets the representing the bot. /// public User User { get; } } }