mirror of
https://github.com/pterodactyl/panel.git
synced 2026-02-06 06:52:07 -06:00
13 lines
177 B
PHP
13 lines
177 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Models;
|
|
|
|
class EggMount extends Model
|
|
{
|
|
protected $table = 'egg_mount';
|
|
|
|
protected $primaryKey = null;
|
|
|
|
public $incrementing = false;
|
|
}
|