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