forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathValidationErrors.cs
More file actions
26 lines (25 loc) · 1.01 KB
/
ValidationErrors.cs
File metadata and controls
26 lines (25 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ServiceStack.FluentValidation
{
public static class ValidationErrors
{
public const string CreditCard = "CreditCard";
public const string Email = "Email";
public const string Equal = "Equal";
public const string ExclusiveBetween = "ExclusiveBetween";
public const string GreaterThanOrEqual = "GreaterThanOrEqual";
public const string GreaterThan = "GreaterThan";
public const string InclusiveBetween = "InclusiveBetween";
public const string Length = "Length";
public const string LessThanOrEqual = "LessThanOrEqual";
public const string LessThan = "LessThan";
public const string NotEmpty = "NotEmpty";
public const string NotEqual = "NotEqual";
public const string NotNull = "NotNull";
public const string Predicate = "Predicate";
public const string RegularExpression = "RegularExpression";
}
}