12 lines
246 B
C#
12 lines
246 B
C#
namespace Umbraco.Core.Persistence.DatabaseAnnotations
|
|
{
|
|
/// <summary>
|
|
/// Enum with the 2 possible Null settings: Null or Not Null
|
|
/// </summary>
|
|
public enum NullSettings
|
|
{
|
|
Null,
|
|
NotNull
|
|
}
|
|
}
|