namespace xModels.Dtos { /// /// Some Requests Get Object Response Result of Data ... /// public struct XObjectResponseResult { public XObjectResponseResult (T responseObject, string responseText) { this.Object = responseObject; this.Text = responseText; } public T Object { get; } public string Text { get; } } }