2020-05-24 22:22:26 -04:00
|
|
|
|
namespace SharedLibraryCore.Dtos
|
|
|
|
|
{
|
|
|
|
|
public class ErrorResponse
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-01-26 11:32:16 -05:00
|
|
|
|
/// todo: type of error
|
2020-05-24 22:22:26 -04:00
|
|
|
|
/// </summary>
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2022-01-26 11:32:16 -05:00
|
|
|
|
/// relevant error messages
|
2020-05-24 22:22:26 -04:00
|
|
|
|
/// </summary>
|
|
|
|
|
public string[] Messages { get; set; }
|
|
|
|
|
}
|
2022-01-26 11:32:16 -05:00
|
|
|
|
}
|