aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/BindFileWithPath.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/BindFileWithPath.cs')
-rw-r--r--src/WixToolset.Core/BindFileWithPath.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/WixToolset.Core/BindFileWithPath.cs b/src/WixToolset.Core/BindFileWithPath.cs
new file mode 100644
index 00000000..539600d3
--- /dev/null
+++ b/src/WixToolset.Core/BindFileWithPath.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
3namespace WixToolset.Core
4{
5 using WixToolset.Extensibility.Data;
6
7 /// <summary>
8 /// Bind file with its path.
9 /// </summary>
10 internal class BindFileWithPath : IBindFileWithPath
11 {
12 /// <summary>
13 /// Gets or sets the identifier of the file with this path.
14 /// </summary>
15 public string Id { get; set; }
16
17 /// <summary>
18 /// Gets or sets the file path.
19 /// </summary>
20 public string Path { get; set; }
21 }
22}