Microsoft.SqlServer.Server.SqlFacetAttribute
namespace Microsoft.SqlServer.Server
{
public class SqlFacetAttribute : Attribute
{
public bool IsFixedLength { get; set; }
public bool IsNullable { get; set; }
public int MaxSize { get; set; }
public int Precision { get; set; }
public int Scale { get; set; }
public SqlFacetAttribute();
}
}