Files
Telegrator/src/Telegrator/Configuration/ITelegramBotInfo.cs
T
2026-03-06 21:12:21 +04:00

17 lines
449 B
C#

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