Initial Commit ...

This commit is contained in:
2024-01-25 04:37:38 +03:30
commit c5d69522a9
26 changed files with 1252 additions and 0 deletions
+16
View File
@@ -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; }
}
}