mirror of
https://gh.wpcy.net/https://github.com/LJPc-solutions/freescout-alternative-signatures-module.git
synced 2026-04-17 07:52:14 +08:00
13 lines
272 B
PHP
13 lines
272 B
PHP
<?php
|
|
namespace Modules\LJPcAlternativeSignaturesModule\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class MailboxCustomSignature extends Model {
|
|
protected $table = 'mailbox_custom_signatures';
|
|
protected $fillable = [
|
|
'mailbox_id',
|
|
'name',
|
|
'content',
|
|
];
|
|
}
|