Files
zhamao-framework/src/ZM/Entity/MatchResult.php
2022-03-15 18:05:33 +08:00

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 = [];
}