IW4M-Admin/SharedLibraryCore/Dtos/ErrorResponse.cs

15 lines
337 B
C#
Raw Permalink Normal View History

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