Files
zhamao-framework/src/ZM/Entity/MatchResult.php
2021-03-22 07:44:11 +08:00

17 lines
238 B
PHP

<?php
namespace ZM\Entity;
use ZM\Annotation\CQ\CQCommand;
class MatchResult
{
/** @var bool */
public $status = false;
/** @var CQCommand|null */
public $object = null;
/** @var array */
public $match = [];
}