Files
nexusphp/app/Models/DownloadSpeed.php

12 lines
151 B
PHP
Raw Normal View History

2022-07-30 15:06:51 +08:00
<?php
namespace App\Models;
class DownloadSpeed extends NexusModel
{
protected $table = 'downloadspeed';
protected $fillable = ['name'];
}