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