10 lines
237 B
C#
10 lines
237 B
C#
|
namespace decePubClient.Resources
|
|||
|
{
|
|||
|
public static class ValidationNames
|
|||
|
{
|
|||
|
public const string Required = "Required";
|
|||
|
public const string RequiredWithName = "RequiredWithName";
|
|||
|
public const string MaxLength = "MaxLength";
|
|||
|
}
|
|||
|
}
|