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

20 lines
258 B
PHP
Raw Normal View History

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