Beispiel #1
0
 public ResponseResult(ResponseResultStatus status, List <string> messageList)
 {
     this.Status      = (int)status;
     this.MessageList = messageList;
 }
Beispiel #2
0
 public ResponseResult(ResponseResultStatus status, string message, object data)
 {
     this.Status  = (int)status;
     this.Message = message;
     this.Data    = data;
 }
Beispiel #3
0
 public ResponseResult(ResponseResultStatus status, string message)
 {
     this.Status  = (int)status;
     this.Message = message;
 }