misc_pterodactyl-panel/app/Models/EggMount.php
2020-10-03 12:42:27 -07:00

21 lines
278 B
PHP

<?php
namespace Pterodactyl\Models;
class EggMount extends Model
{
/**
* @var string
*/
protected $table = 'egg_mount';
/**
* @var null
*/
protected $primaryKey = null;
/**
* @var bool
*/
public $incrementing = false;
}