Files
BeWoPlaner/BeWo/Validation/ValidationRules.cs
2016-06-27 01:45:38 +02:00

13 lines
289 B
C#

namespace BeWo.Validation
{
public enum ValidationRules
{
AlwaysValid,
NotNullOrStringEmpty,
NotZero,
GreaterThanZero,
EmptyNoticeInNewServiceRecordsAllowed,
GreaterThanOrEqualZero,
CollectionNotEmpty
}
}