misc_pterodactyl-panel/app/Models/EggMount.php

22 lines
278 B
PHP
Raw Normal View History

2020-10-03 19:42:27 +00:00
<?php
namespace Pterodactyl\Models;
class EggMount extends Model
{
/**
* @var string
*/
protected $table = 'egg_mount';
/**
* @var null
*/
protected $primaryKey = null;
/**
* @var bool
*/
public $incrementing = false;
}