Files
zhamao-framework/src/ZM/Entity/MatchResult.php

17 lines
238 B
PHP
Raw Normal View History

2021-03-22 07:44:11 +08:00
<?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 = [];
}