diff options
Diffstat (limited to 'src/WixToolset.Core/ComponentKeyPath.cs')
-rw-r--r-- | src/WixToolset.Core/ComponentKeyPath.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/WixToolset.Core/ComponentKeyPath.cs b/src/WixToolset.Core/ComponentKeyPath.cs new file mode 100644 index 00000000..f81465fd --- /dev/null +++ b/src/WixToolset.Core/ComponentKeyPath.cs | |||
@@ -0,0 +1,24 @@ | |||
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.Core | ||
4 | { | ||
5 | using WixToolset.Extensibility.Data; | ||
6 | |||
7 | internal class ComponentKeyPath : IComponentKeyPath | ||
8 | { | ||
9 | /// <summary> | ||
10 | /// Identifier of the resource to be a key path. | ||
11 | /// </summary> | ||
12 | public string Id { get; set; } | ||
13 | |||
14 | /// <summary> | ||
15 | /// Indicates whether the key path was explicitly set for this resource. | ||
16 | /// </summary> | ||
17 | public bool Explicit { get; set; } | ||
18 | |||
19 | /// <summary> | ||
20 | /// Type of resource to be the key path. | ||
21 | /// </summary> | ||
22 | public ComponentKeyPathType Type { get; set; } | ||
23 | } | ||
24 | } | ||