using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HPSocketCS { public class ErrorInfo { /// /// 错误码 /// public int ErrorCode { get; set; } /// /// 错误信息 /// public string ErrorMsg { get; set; } } }