mirror of
https://gh.wpcy.net/https://github.com/thomas-deep/freescoutAI.git
synced 2026-05-23 15:54:16 +08:00
16 lines
277 B
PHP
16 lines
277 B
PHP
<?php
|
|
|
|
namespace Modules\FreeScoutAI\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AIPriority extends Model
|
|
{
|
|
protected $table = 'freescoutai_priorities';
|
|
|
|
protected $fillable = [
|
|
'conversation_id',
|
|
'priority',
|
|
'reason'
|
|
];
|
|
}
|