0
1
Fork 0
hedera-web-mindshore/web/json-reply.php

16 lines
229 B
PHP

<?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;
}