f1927cdda0
* Updatedt Solution format
17 lines
449 B
C#
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; }
|
|
}
|
|
}
|