From e9fea339e473e6dcc32e34e995429b41cabb6c22 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Fri, 1 Mar 2019 11:05:02 -0800 Subject: Expose only abstracts and enums from WixToolset.Extensibility --- src/WixToolset.Extensibility/Data/IComponentKeyPath.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/WixToolset.Extensibility/Data/IComponentKeyPath.cs (limited to 'src/WixToolset.Extensibility/Data/IComponentKeyPath.cs') diff --git a/src/WixToolset.Extensibility/Data/IComponentKeyPath.cs b/src/WixToolset.Extensibility/Data/IComponentKeyPath.cs new file mode 100644 index 00000000..ba660b45 --- /dev/null +++ b/src/WixToolset.Extensibility/Data/IComponentKeyPath.cs @@ -0,0 +1,13 @@ +// 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.Extensibility.Data +{ + public interface IComponentKeyPath + { + bool Explicit { get; set; } + + string Id { get; set; } + + ComponentKeyPathType Type { get; set; } + } +} -- cgit v1.2.3-55-g6feb