// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Data
{
///
/// Yes/no type (kinda like a boolean).
///
public enum YesNoType
{
/// Not a valid yes or no value.
IllegalValue = -2,
/// Value not set; equivalent to null for reference types.
NotSet = -1,
/// The no value.
No,
/// The yes value.
Yes,
}
}