mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
11 lines
226 B
PHP
11 lines
226 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class UserRequireSeedTorrent extends NexusModel
|
|
{
|
|
protected $fillable = ['user_id', 'torrent_id', 'seed_time_begin', 'uploaded_begin', 'last_settlement_at'];
|
|
|
|
public $timestamps = true;
|
|
}
|