mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
16 lines
244 B
PHP
16 lines
244 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Nexus\Database\NexusDB;
|
|
|
|
class TorrentDenyReason extends NexusModel
|
|
{
|
|
protected $table = 'torrent_deny_reasons';
|
|
|
|
public $timestamps = true;
|
|
|
|
protected $fillable = ['name', 'hits', 'priority',];
|
|
|
|
}
|