13 lines
291 B
C#
13 lines
291 B
C#
|
|
namespace ValidationLibrary
|
||
|
|
{
|
||
|
|
public enum ValidationRules
|
||
|
|
{
|
||
|
|
AlwaysValid,
|
||
|
|
NotNullOrStringEmpty,
|
||
|
|
NotZero,
|
||
|
|
GreaterThanZero,
|
||
|
|
EmptyNoticeInNewServiceRecordsAllowed,
|
||
|
|
GreaterThanOrEqualZero,
|
||
|
|
CollectionNotEmpty
|
||
|
|
}
|
||
|
|
}
|