17 lines
291 B
PHP
Executable File
17 lines
291 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 Mod extends AbstractStructure
|
|
{
|
|
/** var string */
|
|
public $env;
|
|
/** var string */
|
|
public $url;
|
|
}
|