Files
ProxyPanel/app/Models/EmailFilter.php
2024-06-27 22:18:21 +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 = [];
}