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

17 lines
228 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
2016-12-20 09:32:17 +00:00
*/
2016-07-22 20:00:27 +00:00
class JsonReply
{
var $data = NULL;
2016-08-22 10:41:05 +00:00
var $warnings = NULL;
}