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