System.ComponentModel.DataAnnotations.MaxLengthAttribute
namespace System.ComponentModel.DataAnnotations
{
public class MaxLengthAttribute : ValidationAttribute
{
public int Length { get; }
public MaxLengthAttribute(int length);
public MaxLengthAttribute();
}
}