Files
ProxyPanel/app/Models/EmailFilter.php
2020-10-17 03:40:08 +08:00

16 lines
242 B
PHP

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