13 lines
299 B
C#
13 lines
299 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Numerics;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace NejCommon.Validation;
|
|
|
|
public class StandardTextAttribute : RegexAttribute{
|
|
public StandardTextAttribute() : base("^[a-zA-Z0-9_-., ]*$","Aa_bb-123"){
|
|
|
|
}
|
|
} |