Initial Commit ...
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
namespace xModels.Dtos {
|
||||
/// <summary>
|
||||
/// Some Requests Get Object Response Result of Data ...
|
||||
/// </summary>
|
||||
public struct XObjectResponseResult<T> {
|
||||
|
||||
public XObjectResponseResult (T responseObject, string responseText) {
|
||||
this.Object = responseObject;
|
||||
this.Text = responseText;
|
||||
}
|
||||
|
||||
public T Object { get; }
|
||||
|
||||
public string Text { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user