mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-09 09:45:34 +08:00
20 lines
258 B
PHP
20 lines
258 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ZM\Entity;
|
|
|
|
use ZM\Annotation\CQ\CQCommand;
|
|
|
|
class MatchResult
|
|
{
|
|
/** @var bool */
|
|
public $status = false;
|
|
|
|
/** @var null|CQCommand */
|
|
public $object;
|
|
|
|
/** @var array */
|
|
public $match = [];
|
|
}
|