예제 #1
0
 public QueryResult(QueryResultEnum error, Object obj = null)
 {
     this.Error  = error;
     this.Object = obj;
 }
예제 #2
0
 public QueryResultTyped(QueryResultEnum error, T obj = default)
 {
     this.Error  = error;
     this.Object = obj;
 }