コード例 #1
0
 private ResponseResult(CodeMessage data)
 {
     if (data == null)
     {
         return;
     }
     this.Code    = data.Code;
     this.Message = data.Message;
 }
コード例 #2
0
 public static ResponseResult Error(CodeMessage msg)
 {
     return(new ResponseResult(msg));
 }