mirror of
https://gh.wpcy.net/https://github.com/thomas-deep/freescoutAI.git
synced 2026-05-23 17:53:17 +08:00
15 lines
258 B
PHP
15 lines
258 B
PHP
<?php
|
|
|
|
namespace Modules\FreeScoutAI\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AISuggestion extends Model
|
|
{
|
|
protected $table = 'freescoutai_suggestions';
|
|
|
|
protected $fillable = [
|
|
'thread_id',
|
|
'suggestion'
|
|
];
|
|
}
|