21 lines
372 B
PHP
Executable File
21 lines
372 B
PHP
Executable File
<?php
|
|
/**
|
|
* ManiaPlanet dedicated server Xml-RPC client
|
|
*
|
|
* @license http://www.gnu.org/licenses/lgpl.html LGPL License 3
|
|
*/
|
|
|
|
namespace Maniaplanet\DedicatedServer\Structures;
|
|
|
|
class Command extends AbstractStructure
|
|
{
|
|
/** @var string */
|
|
public $name;
|
|
/** @var string */
|
|
public $desc;
|
|
/** @var string */
|
|
public $type;
|
|
/** @var string */
|
|
public $default;
|
|
}
|