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

28 lines
455 B
PHP
Raw Normal View History

2023-07-24 11:45:53 +00:00
<?php namespace TPS\Birzha\Models;
use Model;
/**
* Model
*/
class UsersCategory 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_users_categories';
/**
* @var array Validation rules
*/
public $rules = [
];
}