mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
16 lines
225 B
PHP
16 lines
225 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
use App\Models\Traits\NexusActivityLogTrait;
|
|
|
|
class UploadSpeed extends NexusModel
|
|
{
|
|
use NexusActivityLogTrait;
|
|
|
|
protected $table = 'uploadspeed';
|
|
|
|
protected $fillable = ['name'];
|
|
}
|