// 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
{
public enum ComponentKeyPathType
{
///
/// Folder as a key path.
///
Directory,
///
/// File resource as a key path.
///
File,
///
/// ODBC data source as a key path.
///
OdbcDataSource,
///
/// A simple registry key acting as a key path.
///
Registry,
}
}