mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-08 17:25:35 +08:00
17 lines
238 B
PHP
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 = [];
|
|
} |