12 lines
223 B
C#
12 lines
223 B
C#
namespace LaaProduction.Http.Interfaces
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
public interface IHttpErrorResponse
|
|
{
|
|
IDictionary<string, string> Errors { get; }
|
|
|
|
string Message { get; }
|
|
}
|
|
}
|