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

19 lines
261 B
PHP
Raw Normal View History

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