18 lines
457 B
C#
18 lines
457 B
C#
namespace LaaProduction.Http
|
|
{
|
|
using LaaProduction.Http.Interfaces;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
public class HttpResponse<T> : IHttpResponse<T>
|
|
{
|
|
public bool Succeeded { get; internal set; }
|
|
|
|
public T Value { get; internal set; }
|
|
|
|
public IDictionary<string, string> Errors { get; internal set; }
|
|
= new Dictionary<string, string>();
|
|
|
|
public string Message { get; internal set; }
|
|
}
|
|
} |