1
0
Fork 0
mirror of https://github.com/joostfaassen/vndb-client-php.git synced 2024-06-17 07:30:46 +03:00
vndb-client-php/src/Response.php
2015-01-03 13:19:22 +01:00

29 lines
394 B
PHP

<?php
namespace VndbClient;
class Response
{
private $type;
private $data;
public function getType()
{
return $this->type;
}
public function setType($type)
{
$this->type = $type;
}
public function setData($data)
{
$this->data = $data;
}
public function getData()
{
return $this->data;
}
}