10 lines
231 B
C#
10 lines
231 B
C#
namespace GymLogAI.TelegramBot;
|
|
|
|
public sealed record TelegramBotOptions
|
|
{
|
|
public const string SectionName = "TelegramBot";
|
|
|
|
public string? BotToken { get; init; }
|
|
public int PollingTimeoutSeconds { get; init; } = 5;
|
|
}
|