Files
BeWoPlaner/ValidationLibrary/ValidationRules.cs

13 lines
291 B
C#
Raw Permalink Normal View History

2016-06-27 01:45:38 +02:00
namespace ValidationLibrary
{
public enum ValidationRules
{
AlwaysValid,
NotNullOrStringEmpty,
NotZero,
GreaterThanZero,
EmptyNoticeInNewServiceRecordsAllowed,
GreaterThanOrEqualZero,
CollectionNotEmpty
}
}