main
cs 20 lines 602 Bytes
Raw
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 System.Diagnostics;
6 using WixToolset.Extensibility.Data;
7
8 /// <summary>
9 /// Bind path representation.
10 /// </summary>
11 [DebuggerDisplay("Name={Name,nq} Path={Path,nq}")]
12 internal class BindPath : IBindPath
13 {
14 public string Name { get; set; }
15
16 public string Path { get; set; }
17
18 public BindStage Stage { get; set; }
19 }
20 }