12 lines
331 B
C#
12 lines
331 B
C#
namespace AyaNova.Biz
|
|
{
|
|
//TODO: CHILD COLLECTION MOD add "Index" property to indicate child collection index location of error
|
|
public class ValidationError
|
|
{
|
|
public ApiErrorCode Code { get; set; }
|
|
public string Target { get; set; }
|
|
public string Message { get; set; }
|
|
|
|
}//eoc
|
|
|
|
}//eons |