hedera-web/web/json-reply.php

17 lines
229 B
PHP
Executable File

<?php
namespace Vn\Web;
/**
* Class used for replies.
*
* @property Object $data The returned data
* @property array $warnings Array with warning messages
**/
class JsonReply
{
var $data = NULL;
var $warnings = NULL;
}