15 lines
337 B
C#
Raw Permalink Normal View History

namespace SharedLibraryCore.Dtos
{
public class ErrorResponse
{
/// <summary>
2022-01-26 10:32:16 -06:00
/// todo: type of error
/// </summary>
public string Type { get; set; }
/// <summary>
2022-01-26 10:32:16 -06:00
/// relevant error messages
/// </summary>
public string[] Messages { get; set; }
}
2022-01-26 10:32:16 -06:00
}