using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//----------------------------------------------------------------
//Module Name: $safeprojectname$
//Purpose:
//CopyRight: Muchinfo
//History:
//----------------------------------------------------------------
//DateTime 2016/1/13 19:04:05
//Author
//Description Create
//----------------------------------------------------------------
namespace Muchinfo.MTPClient.Data
{
public class ErrorEntity
{
///
/// 错误代码
///
public int ReturnCode { get; set; }
///
/// 错误描述
///
public string ReturnDesc { get; set; }
///
/// 请求方法描述
///
public string RequestFunc { get; set; }
}
}