// 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.WindowsInstaller
{
///
/// Defines MSI column types.
///
public enum ColumnType
{
/// Unknown column type, default and invalid.
Unknown,
/// Column is a string.
String,
/// Column is a localizable string.
Localized,
/// Column is a number.
Number,
/// Column is a binary stream.
Object,
/// Column is a string that is preserved in transforms (like Object).
Preserved,
}
}