aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/YesNoDefaultType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/YesNoDefaultType.cs')
-rw-r--r--src/WixToolset.Data/YesNoDefaultType.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/WixToolset.Data/YesNoDefaultType.cs b/src/WixToolset.Data/YesNoDefaultType.cs
new file mode 100644
index 00000000..fd782d46
--- /dev/null
+++ b/src/WixToolset.Data/YesNoDefaultType.cs
@@ -0,0 +1,25 @@
1// 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.
2
3namespace WixToolset.Data
4{
5 /// <summary>
6 /// Yes, No, Default xml simple type.
7 /// </summary>
8 public enum YesNoDefaultType
9 {
10 /// <summary>Not a valid yes, no or default value.</summary>
11 IllegalValue = -2,
12
13 /// <summary>Value not set; equivalent to null for reference types.</summary>
14 NotSet = -1,
15
16 /// <summary>The no value.</summary>
17 No,
18
19 /// <summary>The yes value.</summary>
20 Yes,
21
22 /// <summary>The default value.</summary>
23 Default,
24 }
25}