TPS_web_october/plugins/akami/tps/models/Client.php

30 lines
505 B
PHP
Raw Normal View History

2022-09-12 06:02:53 +00:00
<?php namespace Akami\Tps\Models;
use Model;
/**
* Model
*/
class Client extends Model
{
use \October\Rain\Database\Traits\Validation;
/*
* Disable timestamps by default.
* Remove this line if timestamps are defined in the database table.
*/
public $timestamps = false;
/**
* @var string The database table used by the model.
*/
public $table = 'akami_tps_clients';
/**
* @var array Validation rules
*/
public $rules = [
];
}