Files
nexusphp/app/Models/DownloadSpeed.php

16 lines
229 B
PHP
Raw Normal View History

2022-07-30 15:06:51 +08:00
<?php
namespace App\Models;
2025-10-12 03:48:04 +07:00
use App\Models\Traits\NexusActivityLogTrait;
2022-07-30 15:06:51 +08:00
class DownloadSpeed extends NexusModel
{
2025-10-12 03:48:04 +07:00
use NexusActivityLogTrait;
2022-07-30 15:06:51 +08:00
protected $table = 'downloadspeed';
protected $fillable = ['name'];
}