Revert: accidental commit of extra changes

This commit is contained in:
XSilverTH
2025-12-29 16:53:32 +03:30
parent de397b95f6
commit 00842216a1
+3 -3
View File
@@ -6,12 +6,12 @@ using Telegram.Bot.Types;
namespace Telegrator.Polling namespace Telegrator.Polling
{ {
/// <summary> /// <summary>
/// Reactive update receiver for polling updates from Telegram. /// Reactive implementation of <see cref="IUpdateReceiver"/> for polling updates from Telegram.
/// Provides custom update receiving logic with error handling and configuration options. /// /// Provides custom update receiving logic with error handling and configuration options.
/// </summary> /// </summary>
/// <param name="client">The Telegram bot client for making API requests.</param> /// <param name="client">The Telegram bot client for making API requests.</param>
/// <param name="options">Optional receiver options for configuring update polling behavior.</param> /// <param name="options">Optional receiver options for configuring update polling behavior.</param>
public class ReactiveUpdateReceiver(ITelegramBotClient client, ReceiverOptions? options) public class ReactiveUpdateReceiver(ITelegramBotClient client, ReceiverOptions? options) : IUpdateReceiver
{ {
/// <summary> /// <summary>
/// Gets the receiver options for configuring update polling behavior. /// Gets the receiver options for configuring update polling behavior.