Files
kiri-wchat/wx/V3/Libs/TransferSceneReportInfo.php
T

32 lines
456 B
PHP
Raw Normal View History

2025-02-24 17:08:40 +08:00
<?php
namespace wchat\wx\V3\Libs;
use Arrayable;
readonly class TransferSceneReportInfo implements Arrayable
{
public function __construct(
public string $info_type,
public string $info_content,
)
{
}
/**
* @return array
*/
public function toArray(): array
{
return [
"info_type" => $this->info_type,
"info_content" => $this->info_content
];
}
}