main
cs 25 lines 742 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.Extensibility.Data
4 {
5 /// <summary>
6 /// Interface for a bind path.
7 /// </summary>
8 public interface IBindPath
9 {
10 /// <summary>
11 /// Name of the bind path or String.Empty if the path is unnamed.
12 /// </summary>
13 string Name { get; set; }
14
15 /// <summary>
16 /// Path for the bind path.
17 /// </summary>
18 string Path { get; set; }
19
20 /// <summary>
21 /// Stage for the bind path.
22 /// </summary>
23 BindStage Stage { get; set; }
24 }
25 }