diff options
Diffstat (limited to 'src/WixToolset.Core/BindPath.cs')
-rw-r--r-- | src/WixToolset.Core/BindPath.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/WixToolset.Core/BindPath.cs b/src/WixToolset.Core/BindPath.cs new file mode 100644 index 00000000..85aef97a --- /dev/null +++ b/src/WixToolset.Core/BindPath.cs | |||
@@ -0,0 +1,18 @@ | |||
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 WixToolset.Extensibility.Data; | ||
6 | |||
7 | /// <summary> | ||
8 | /// Bind path representation. | ||
9 | /// </summary> | ||
10 | internal class BindPath : IBindPath | ||
11 | { | ||
12 | public string Name { get; set; } | ||
13 | |||
14 | public string Path { get; set; } | ||
15 | |||
16 | public BindStage Stage { get; set; } | ||
17 | } | ||
18 | } | ||