diff options
| author | Rob Mensching <rob@firegiant.com> | 2019-03-01 11:05:02 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@robmensching.com> | 2019-03-01 11:08:36 -0800 |
| commit | e9fea339e473e6dcc32e34e995429b41cabb6c22 (patch) | |
| tree | cad7210c4adcfa8f11b460eaadb1178c52d28e32 /src/WixToolset.Extensibility/Data/IComponentKeyPath.cs | |
| parent | 543ce1ac2e203ac0dc8fa3227bb2c40c12e6e17e (diff) | |
| download | wix-e9fea339e473e6dcc32e34e995429b41cabb6c22.tar.gz wix-e9fea339e473e6dcc32e34e995429b41cabb6c22.tar.bz2 wix-e9fea339e473e6dcc32e34e995429b41cabb6c22.zip | |
Expose only abstracts and enums from WixToolset.Extensibility
Diffstat (limited to 'src/WixToolset.Extensibility/Data/IComponentKeyPath.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/Data/IComponentKeyPath.cs | 13 |
1 files changed, 13 insertions, 0 deletions
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 @@ | |||
| 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.Extensibility.Data | ||
| 4 | { | ||
| 5 | public interface IComponentKeyPath | ||
| 6 | { | ||
| 7 | bool Explicit { get; set; } | ||
| 8 | |||
| 9 | string Id { get; set; } | ||
| 10 | |||
| 11 | ComponentKeyPathType Type { get; set; } | ||
| 12 | } | ||
| 13 | } | ||
