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

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;
}
?>