namespace RestEase.Implementation { /// /// Structure containing information about a desired HTTP request message property /// public struct HttpRequestMessagePropertyInfo { /// /// Key of the key/value pair /// public string Key { get; private set; } /// /// Value of the key/value pair /// public object Value { get; private set; } /// /// Initialises a new instance of the Structure /// /// Key of the key/value pair /// Value of the key/value pair public HttpRequestMessagePropertyInfo(string key, object value) { this.Key = key; this.Value = value; } } }