You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
551 B
23 lines
551 B
7 days ago
|
namespace CoreAgent.Domain.Models
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// ��ʾAPI������Ӧ������ģ��
|
||
|
/// </summary>
|
||
|
public class ErrorResponse
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// ������Ψһ���ٱ�ʶ��
|
||
|
/// </summary>
|
||
|
public string TraceId { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// ������Ϣ
|
||
|
/// </summary>
|
||
|
public string Message { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// ��֤���ϣ���Ϊ�ֶ�����ֵΪ������Ϣ����
|
||
|
/// </summary>
|
||
|
public IDictionary<string, string[]> Errors { get; set; }
|
||
|
}
|
||
|
}
|