16 lines
426 B
C#
16 lines
426 B
C#
namespace 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; }
|
|
}
|
|
} |