using System;
namespace Umbraco.Cms.Infrastructure.Persistence.DatabaseAnnotations
{
///
/// Attribute that represents the Null-setting of a column
///
///
/// This should only be used for Columns that can be Null.
/// By convention the Columns will be "NOT NULL".
///
[AttributeUsage(AttributeTargets.Property)]
public class NullSettingAttribute : Attribute
{
///
/// Gets or sets the for a column
///
public NullSettings NullSetting { get; set; }
}
}