22 lines
345 B
PHP
22 lines
345 B
PHP
<?php
|
|
|
|
|
|
namespace app\models;
|
|
|
|
/**
|
|
* Class Slides
|
|
* @package app\models
|
|
* @property string $title
|
|
* @property string $text
|
|
* @property string $ts_en_title
|
|
* @property string $ts_en_text
|
|
* @property string $media_key
|
|
* @property integer $order_index
|
|
* @property $relation
|
|
* @property $ts_en_relation
|
|
*/
|
|
class Slides extends _Base
|
|
{
|
|
|
|
}
|