sapalymahabat/plugins/akami/coffe30/models/Comment.php

24 lines
355 B
PHP
Raw Normal View History

2023-01-18 05:02:37 +00:00
<?php namespace Akami\Coffe30\Models;
use Model;
/**
* Model
*/
class Comment extends Model
{
use \October\Rain\Database\Traits\Validation;
/**
* @var string The database table used by the model.
*/
public $table = 'akami_coffe30_comment';
/**
* @var array Validation rules
*/
public $rules = [
];
}