mirror of
https://github.com/danog/MadelineProto.git
synced 2025-01-11 15:48:18 +01:00
10 lines
247 B
PHP
10 lines
247 B
PHP
|
<?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;
|
||
|
}
|