namespace RestEase { /// /// Encapsulates extra information provides to /// /// /// This is broken out as a separate structure so that extra properties can be added without breaking backwards compatibility /// public struct ResponseDeserializerInfo { /// /// Gets information about the request /// public IRequestInfo RequestInfo { get; } /// /// Initialises a new instance of the structure /// /// Information about the request public ResponseDeserializerInfo(IRequestInfo requestInfo) { this.RequestInfo = requestInfo; } } }