add customer api

This commit is contained in:
2019-10-08 22:33:25 +02:00
committed by Roland Schneider
parent 9aee187d11
commit 1300bfc752
33 changed files with 1164 additions and 246 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace customerapi\models;
use yii\base\Component;
use yii\base\Model;
class EventView extends Component
{
public $id;//: number;
public $name;//: string;
public $start;//: number;
public $end;//: number;
public $trainer;//?: Trainer;
public $seatCount;//: number;
public $reservationCount;//: number;
public $eventType;//: EventType;
public $reservedAt;//: number;
}