Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

21 lines
512 B
C#

namespace Newtonsoft.Json
{
/// <summary>
/// Indicating whether a property is required.
/// </summary>
public enum Required
{
/// <summary>
/// The property is not required. The default state.
/// </summary>
Default,
/// <summary>
/// The property must be defined in JSON but can be a null value.
/// </summary>
AllowNull,
/// <summary>
/// The property must be defined in JSON and cannot be a null value.
/// </summary>
Always
}
}