aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/BindResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/BindResult.cs')
-rw-r--r--src/WixToolset.Core/BindResult.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/WixToolset.Core/BindResult.cs b/src/WixToolset.Core/BindResult.cs
new file mode 100644
index 00000000..7883fabd
--- /dev/null
+++ b/src/WixToolset.Core/BindResult.cs
@@ -0,0 +1,14 @@
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 System.Collections.Generic;
6 using WixToolset.Extensibility.Data;
7
8 internal class BindResult : IBindResult
9 {
10 public IEnumerable<IFileTransfer> FileTransfers { get; set; }
11
12 public IEnumerable<ITrackedFile> TrackedFiles { get; set; }
13 }
14}