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