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