using System.Collections.Generic; namespace InABox.Clients { public class CompressedResponse { public CompressedResponse() { Headers = new Dictionary(); Options = new Dictionary(); } public string ContentType { get; set; } public Dictionary Headers { get; set; } public int Status { get; set; } public string StatusCode { get; set; } public string Response { get; set; } public Dictionary Options { get; set; } } }