using System;
namespace Shared.Common.ResponseEntity
{
///
/// Response pack.
///
[Serializable]
public class ResponsePack
{
///
/// Gets or sets the state code.
///
/// The state code.
public string StateCode { get; set; }
///
/// Gets or sets the error info en.
///
/// The error info en.
public string ErrorInfo_En { get; set; }
///
/// Gets or sets the error info zh.
///
/// The error info zh.
public string ErrorInfo_Zh { get; set; }
///
/// Gets or sets the error info.
///
/// The error info.
public string ErrorInfo { get; set; }
///
/// Gets or sets the response data.
///
/// The response data.
public object ResponseData { get; set; }
}
}