diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/IntermediateFieldDefinition.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/WixToolset.Data/IntermediateFieldDefinition.cs b/src/WixToolset.Data/IntermediateFieldDefinition.cs new file mode 100644 index 00000000..c77a2ae8 --- /dev/null +++ b/src/WixToolset.Data/IntermediateFieldDefinition.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 | |||
3 | namespace WixToolset.Data | ||
4 | { | ||
5 | public enum IntermediateFieldType | ||
6 | { | ||
7 | String, | ||
8 | Bool, | ||
9 | Number, | ||
10 | Path, | ||
11 | } | ||
12 | |||
13 | public class IntermediateFieldDefinition | ||
14 | { | ||
15 | public IntermediateFieldDefinition(string name, IntermediateFieldType type) | ||
16 | { | ||
17 | this.Name = name; | ||
18 | this.Type = type; | ||
19 | } | ||
20 | |||
21 | public string Name { get; } | ||
22 | |||
23 | public IntermediateFieldType Type { get; } | ||
24 | } | ||
25 | } | ||