wp2static/library/Dropbox/HttpResponse.php
2017-03-12 17:54:22 +13:00

17 lines
246 B
PHP

<?php
namespace Dropbox;
/**
* @internal
*/
final class HttpResponse
{
public $statusCode;
public $body;
function __construct($statusCode, $body)
{
$this->statusCode = $statusCode;
$this->body = $body;
}
}