<?php

class ModuleVPS extends Module
{
  function __construct(System $System)
  {
    parent::__construct($System);
    $this->Name = 'VPS';
    $this->Title = 'VPS';
    $this->Version = '1.0';
    $this->Creator = 'Chronos';
    $this->License = 'GNU/GPLv3';
    $this->Description = 'VPS(Virtual Private Server) hosting management';
    $this->Dependencies = array(ModuleUser::GetName(), ModuleNetwork::GetName(), ModuleSubject::GetName());
  }
}
