TDH_2/plugins/admin/tpsadsnotify/models/TPSAdsNotify.php

25 lines
395 B
PHP

<?php namespace Admin\Tpsadsnotify\Models;
use Model;
/**
* Model
*/
class TPSAdsNotify extends Model
{
use \October\Rain\Database\Traits\Validation;
public $timestamps = false;
/**
* @var string The database table used by the model.
*/
public $table = 'admin_tpsadsnotify_';
/**
* @var array Validation rules
*/
public $rules = [
];
}