16 lines
314 B
C#
16 lines
314 B
C#
namespace Common.Logic.Extensions.Http.Interfaces
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public interface IHttpResponse<T>
|
|
{
|
|
Boolean Succeeded { get; }
|
|
|
|
T Value { get; }
|
|
|
|
Exception Exception { get; }
|
|
|
|
Dictionary<String, String> Errors { get; }
|
|
}
|
|
} |