Files
ProxyPanel/app/Models/EmailFilter.php
2023-06-14 22:34:55 +08:00

18 lines
240 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* 邮箱后缀过滤.
*/
class EmailFilter extends Model
{
public $timestamps = false;
protected $table = 'email_filter';
protected $guarded = [];
}