9 lines
168 B
C#
9 lines
168 B
C#
namespace GymLogAI.TgBot;
|
|
|
|
public sealed record TelegramBotOptions
|
|
{
|
|
public const string SectionName = "TelegramBot";
|
|
|
|
public string? BotToken { get; init; }
|
|
}
|