System.ComponentModel.DataAnnotations.StringLengthAttribute
namespace System.ComponentModel.DataAnnotations
{
public class StringLengthAttribute : ValidationAttribute
{
public int MaximumLength { get; }
public int MinimumLength { get; set; }
public StringLengthAttribute(int maximumLength);
}
}