aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Bind/BindResult.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Bind/BindResult.cs')
-rw-r--r--src/WixToolset.Data/Bind/BindResult.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/WixToolset.Data/Bind/BindResult.cs b/src/WixToolset.Data/Bind/BindResult.cs
new file mode 100644
index 00000000..917bebca
--- /dev/null
+++ b/src/WixToolset.Data/Bind/BindResult.cs
@@ -0,0 +1,19 @@
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.Data.Bind
4{
5 using System.Collections.Generic;
6
7 public class BindResult
8 {
9 public BindResult(IEnumerable<FileTransfer> fileTransfers, IEnumerable<string> contentFilePaths)
10 {
11 this.FileTransfers = fileTransfers;
12 this.ContentFilePaths = contentFilePaths;
13 }
14
15 public IEnumerable<FileTransfer> FileTransfers { get; }
16
17 public IEnumerable<string> ContentFilePaths { get; }
18 }
19} \ No newline at end of file