Example #1
0
 public ResObject(ErrorObj error)
 {
     Error = error;
 }
Example #2
0
 public ResObject(T result, ErrorObj error)
 {
     Result = result;
 }
Example #3
0
 public ResObject()
 {
     Error = new ErrorObj();
 }