13 lines
289 B
C#
13 lines
289 B
C#
namespace BeWo.Validation
|
|
{
|
|
public enum ValidationRules
|
|
{
|
|
AlwaysValid,
|
|
NotNullOrStringEmpty,
|
|
NotZero,
|
|
GreaterThanZero,
|
|
EmptyNoticeInNewServiceRecordsAllowed,
|
|
GreaterThanOrEqualZero,
|
|
CollectionNotEmpty
|
|
}
|
|
} |