main
cs 26 lines 668 Bytes
Raw
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 LargeNumber,
11 Path,
12 }
13
14 public class IntermediateFieldDefinition
15 {
16 public IntermediateFieldDefinition(string name, IntermediateFieldType type)
17 {
18 this.Name = name;
19 this.Type = type;
20 }
21
22 public string Name { get; }
23
24 public IntermediateFieldType Type { get; }
25 }
26 }