TrackManiaControl/application/core/Libs/Maniaplanet/DedicatedServer/Structures/Command.php

21 lines
372 B
PHP
Raw Normal View History

2014-01-20 20:51:03 +01:00
<?php
/**
2014-05-08 19:38:15 +02:00
* ManiaPlanet dedicated server Xml-RPC client
*
* @license http://www.gnu.org/licenses/lgpl.html LGPL License 3
2014-01-20 20:51:03 +01:00
*/
2014-05-08 19:38:15 +02:00
2014-01-20 20:51:03 +01:00
namespace Maniaplanet\DedicatedServer\Structures;
class Command extends AbstractStructure
{
2014-05-08 19:38:15 +02:00
/** @var string */
2014-01-20 20:51:03 +01:00
public $name;
2014-05-08 19:38:15 +02:00
/** @var string */
2014-01-20 20:51:03 +01:00
public $desc;
2014-05-08 19:38:15 +02:00
/** @var string */
2014-01-20 20:51:03 +01:00
public $type;
2014-05-08 19:38:15 +02:00
/** @var string */
2014-01-20 20:51:03 +01:00
public $default;
}