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

16 lines
229 B
PHP
Raw Normal View History

<?php
2016-07-22 20:00:27 +00:00
namespace Vn\Web;
/**
* Class used for replies.
*
* @property Object $data The returned data
2016-08-22 10:41:05 +00:00
* @property array $warnings Array with warning messages
**/
2018-05-23 10:14:20 +00:00
class JsonReply {
var $data = NULL;
2016-08-22 10:41:05 +00:00
var $warnings = NULL;
}