25 lines
216 B
PHP
25 lines
216 B
PHP
|
<?php
|
||
|
|
||
|
namespace common\commands\command;
|
||
|
|
||
|
use trntv\tactician\base\BaseCommand;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
class AddToTimelineCommand extends BaseCommand
|
||
|
{
|
||
|
|
||
|
|
||
|
|
||
|
public $category;
|
||
|
|
||
|
|
||
|
|
||
|
public $event;
|
||
|
|
||
|
|
||
|
|
||
|
public $data;
|
||
|
}
|