namespace Xylem.Common.Logic.SoftwareAccessHelper { using System; using System.Collections.Generic; using System.Net; public class HttpResponse { public T Value { get; internal set; } public HttpStatusCode HttpStatusCode { get; internal set; } public Dictionary Errors { get; internal set; } } }