aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/WindowsInstaller/ColumnType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/WindowsInstaller/ColumnType.cs')
-rw-r--r--src/WixToolset.Data/WindowsInstaller/ColumnType.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/WixToolset.Data/WindowsInstaller/ColumnType.cs b/src/WixToolset.Data/WindowsInstaller/ColumnType.cs
new file mode 100644
index 00000000..423125db
--- /dev/null
+++ b/src/WixToolset.Data/WindowsInstaller/ColumnType.cs
@@ -0,0 +1,28 @@
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.WindowsInstaller
4{
5 /// <summary>
6 /// Defines MSI column types.
7 /// </summary>
8 public enum ColumnType
9 {
10 /// <summary>Unknown column type, default and invalid.</summary>
11 Unknown,
12
13 /// <summary>Column is a string.</summary>
14 String,
15
16 /// <summary>Column is a localizable string.</summary>
17 Localized,
18
19 /// <summary>Column is a number.</summary>
20 Number,
21
22 /// <summary>Column is a binary stream.</summary>
23 Object,
24
25 /// <summary>Column is a string that is preserved in transforms (like Object).</summary>
26 Preserved,
27 }
28}