using Telegrator.Configuration; namespace Telegrator.Hosting.Web { public class TelegramBotWebOptions : TelegramBotOptions { /// /// Gets or sets uri for webhook update receiving /// public required string WebhookUri { get; set; } public required string WebhookPattern { get; set; } public int MaxConnections { get; set; } public bool DropPendingUpdates { get; set; } } }