Files
nexusphp/app/Models/DownloadSpeed.php
2022-07-30 15:06:51 +08:00

12 lines
151 B
PHP

<?php
namespace App\Models;
class DownloadSpeed extends NexusModel
{
protected $table = 'downloadspeed';
protected $fillable = ['name'];
}