namespace Common.Logic.Extensions.Http.Interfaces { using System; using System.Collections.Generic; public interface IHttpResponse { Boolean Succeeded { get; } T Value { get; } Exception Exception { get; } Dictionary Errors { get; } } }