Files
raven/server/AyaNova/biz/ValidationError.cs
2021-02-20 16:07:56 +00:00

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