misc_pterodactyl-panel/app/Models/Mount.php
2020-05-20 17:29:03 -06:00

29 lines
499 B
PHP

<?php
namespace Pterodactyl\Models;
/**
* @property int $id
*/
class Mount extends Model
{
/**
* The resource name for this model when it is transformed into an
* API representation using fractal.
*/
const RESOURCE_NAME = 'mount';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'mounts';
/**
* Fields that are not mass assignable.
*
* @var array
*/
protected $guarded = ['id'];
}