16 lines
289 B
PHP
16 lines
289 B
PHP
<?php
|
|
/**
|
|
* ManiaPlanet dedicated server Xml-RPC client
|
|
*
|
|
* @license http://www.gnu.org/licenses/lgpl.html LGPL License 3
|
|
*/
|
|
|
|
namespace Maniaplanet\DedicatedServer\Structures;
|
|
|
|
class Skin extends AbstractStructure
|
|
{
|
|
public $orig;
|
|
public $name;
|
|
public $checksum;
|
|
public $url;
|
|
} |