Files
Umbraco-CMS/umbraco/datalayer/Utility/Table/FieldProperties.cs
Shandem f6d0d043b5 DO NOT DOWNLOAD. DOWNLOAT LATEST STABLE FROM RELEASE TAB
Created 4.1.0 branch

[TFS Changeset #55082]
2009-06-19 07:39:16 +00:00

29 lines
634 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace umbraco.DataLayer.Utility.Table
{
/// <summary>
/// Properties for a table field.
/// </summary>
[Flags]
public enum FieldProperties
{
/// <summary>
/// No special properties.
/// </summary>
None = 0x00,
/// <summary>
/// The field cannot be null.
/// </summary>
NotNull = 0x01 << 1,
/// <summary>
/// The field is an identity field.
/// </summary>
Identity = 0x01 << 2 | NotNull,
}
}