1
0
mirror of https://github.com/danog/MadelineProto.git synced 2025-01-11 15:48:18 +01:00
MadelineProto/src/EventHandler/Query/InlineButtonQuery.php

10 lines
247 B
PHP
Raw Normal View History

2023-08-05 19:13:26 +02:00
<?php declare(strict_types=1);
namespace danog\MadelineProto\EventHandler\Query;
/** Represents a query sent by the user by clicking on a button in an inline message. */
final class InlineButtonQuery extends ButtonQuery
{
use InlineTrait;
}