mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-03 11:09:27 +00:00
15 lines
214 B
PHP
15 lines
214 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* 伪装域名证书.
|
|
*/
|
|
class NodeCertificate extends Model
|
|
{
|
|
protected $table = 'node_certificate';
|
|
protected $guarded = [];
|
|
}
|