mirror of
https://gh.llkk.cc/https://github.com/mainwp/mainwp-remote-backups-extension.git
synced 2026-02-23 13:27:28 +08:00
17 lines
246 B
PHP
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;
|
|
}
|
|
}
|