decePubClient/Resources/ValidationNames.cs

10 lines
237 B
C#
Raw Normal View History

2022-02-14 01:51:37 +01:00
namespace decePubClient.Resources
{
public static class ValidationNames
{
public const string Required = "Required";
public const string RequiredWithName = "RequiredWithName";
public const string MaxLength = "MaxLength";
}
}