diff options
Diffstat (limited to 'src/WixToolset.Extensibility/Data/IBindPath.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/Data/IBindPath.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Data/IBindPath.cs b/src/WixToolset.Extensibility/Data/IBindPath.cs new file mode 100644 index 00000000..5784a0e0 --- /dev/null +++ b/src/WixToolset.Extensibility/Data/IBindPath.cs | |||
| @@ -0,0 +1,22 @@ | |||
| 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 | public interface IBindPath | ||
| 6 | { | ||
| 7 | /// <summary> | ||
| 8 | /// Name of the bind path or String.Empty if the path is unnamed. | ||
| 9 | /// </summary> | ||
| 10 | string Name { get; set; } | ||
| 11 | |||
| 12 | /// <summary> | ||
| 13 | /// Path for the bind path. | ||
| 14 | /// </summary> | ||
| 15 | string Path { get; set; } | ||
| 16 | |||
| 17 | /// <summary> | ||
| 18 | /// Stage for the bind path. | ||
| 19 | /// </summary> | ||
| 20 | BindStage Stage { get; set; } | ||
| 21 | } | ||
| 22 | } | ||
