fitness-web/common/modules/event/modelAndView/CreateEventModelAndView.php
Roland Schneider d26581e338 bug fixing
2021-10-06 18:31:56 +02:00

15 lines
237 B
PHP

<?php
namespace common\modules\event\modelAndView;
use common\models\Trainer;
/**
* @property \common\models\Event $event
* @property Trainer[] $trainers
*/
class CreateEventModelAndView
{
public $event;
public $trainers;
}