Changed summaries for InlineQueryHandler to match new restrict
This commit is contained in:
@@ -9,6 +9,7 @@ namespace Telegrator.Handlers
|
|||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Attribute that marks a handler to process inline queries.
|
/// Attribute that marks a handler to process inline queries.
|
||||||
|
/// IMPORTANT! You can have only ONE instance of this handler.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class InlineQueryHandlerAttribute(int importance = 0) : UpdateHandlerAttribute<InlineQueryHandler>(UpdateType.InlineQuery, importance)
|
public class InlineQueryHandlerAttribute(int importance = 0) : UpdateHandlerAttribute<InlineQueryHandler>(UpdateType.InlineQuery, importance)
|
||||||
{
|
{
|
||||||
@@ -18,6 +19,7 @@ namespace Telegrator.Handlers
|
|||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Abstract base class for handlers that process inline queries.
|
/// Abstract base class for handlers that process inline queries.
|
||||||
|
/// IMPORTANT! You can have only ONE instance of this handler.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public abstract class InlineQueryHandler() : AbstractUpdateHandler<Update>(UpdateType.InlineQuery)
|
public abstract class InlineQueryHandler() : AbstractUpdateHandler<Update>(UpdateType.InlineQuery)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user