TrackManiaControl/application/core/Maniaplanet/DedicatedServer/Structures/Command.php
2014-05-01 17:35:03 +02:00

19 lines
261 B
PHP

<?php
/**
* @version $Revision: $:
* @author $Author: $:
* @date $Date: $:
*/
namespace Maniaplanet\DedicatedServer\Structures;
class Command extends AbstractStructure
{
public $name;
public $desc;
public $type;
public $default;
}
?>