aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/BindPath.cs
blob: 85aef97ad1b09b36493479828247ca750d701912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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;

    /// <summary>
    /// Bind path representation.
    /// </summary>
    internal class BindPath : IBindPath
    {
        public string Name { get; set; }

        public string Path { get; set; }

        public BindStage Stage { get; set; }
    }
}