gurl_o/plugins/tps/birzha/models/SliderApp.php

28 lines
445 B
PHP

<?php namespace TPS\Birzha\Models;
use Model;
/**
* Model
*/
class SliderApp extends Model
{
use \October\Rain\Database\Traits\Validation;
use \October\Rain\Database\Traits\SoftDelete;
protected $dates = ['deleted_at'];
/**
* @var string The database table used by the model.
*/
public $table = 'tps_birzha_slider_app';
/**
* @var array Validation rules
*/
public $rules = [
];
}