laatzen/LaaProductionWeb/LaaProduction.Http/Interfaces/IHttpErrorResponse.cs
2024-02-08 16:30:23 +01:00

12 lines
223 B
C#

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