aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/ComponentKeyPath.cs
blob: f81465fd71f5136a3f65f32e8ac00dfed74ab5ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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.Core
{
    using WixToolset.Extensibility.Data;

    internal class ComponentKeyPath : IComponentKeyPath
    {
        /// <summary>
        /// Identifier of the resource to be a key path.
        /// </summary>
        public string Id { get; set; }

        /// <summary>
        /// Indicates whether the key path was explicitly set for this resource.
        /// </summary>
        public bool Explicit { get; set; }

        /// <summary>
        /// Type of resource to be the key path.
        /// </summary>
        public ComponentKeyPathType Type { get; set; }
    }
}