System.ComponentModel.DataAnnotations.RegularExpressionAttribute
namespace System.ComponentModel.DataAnnotations
{
public class RegularExpressionAttribute : ValidationAttribute
{
public int MatchTimeoutInMilliseconds { get; set; }
public string Pattern { get; }
public RegularExpressionAttribute(string pattern);
}
}