Files
laatzen/LaaProductionWeb/LaaProduction.Http/Interfaces/IHttpErrorResponse.cs
T

12 lines
223 B
C#

namespace LaaProduction.Http.Interfaces
{
using System.Collections.Generic;
public interface IHttpErrorResponse
{
IDictionary<string, string> Errors { get; }
string Message { get; }
}
}