aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data/IBindFileWithPath.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/Data/IBindFileWithPath.cs')
-rw-r--r--src/WixToolset.Extensibility/Data/IBindFileWithPath.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Data/IBindFileWithPath.cs b/src/WixToolset.Extensibility/Data/IBindFileWithPath.cs
new file mode 100644
index 00000000..ec78a1a0
--- /dev/null
+++ b/src/WixToolset.Extensibility/Data/IBindFileWithPath.cs
@@ -0,0 +1,11 @@
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.Data
4{
5 public interface IBindFileWithPath
6 {
7 string Id { get; set; }
8
9 string Path { get; set; }
10 }
11}