Files
Telegrator/Telegrator.Hosting.Web/TelegramBotWebOptions.cs
T

19 lines
468 B
C#
Raw Normal View History

2025-07-24 23:19:59 +04:00
using Telegrator.Configuration;
namespace Telegrator.Hosting.Web
{
public class TelegramBotWebOptions : TelegramBotOptions
{
/// <summary>
/// Gets or sets uri for webhook update receiving
/// </summary>
public required string WebhookUri { get; set; }
public required string WebhookPattern { get; set; }
public int MaxConnections { get; set; }
public bool DropPendingUpdates { get; set; }
}
}