Files
faveo/app/Model/helpdesk/Utility/MailboxProtocol.php
2016-06-13 20:41:55 +05:30

13 lines
236 B
PHP

<?php
namespace App\Model\helpdesk\Utility;
use App\BaseModel;
class MailboxProtocol extends BaseModel
{
public $timestamps = false;
protected $table = 'mailbox_protocol';
protected $fillable = ['id', 'name', 'value'];
}