diff options
Diffstat (limited to 'src/WixToolset.Data/Bind/BindResult.cs')
-rw-r--r-- | src/WixToolset.Data/Bind/BindResult.cs | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/WixToolset.Data/Bind/BindResult.cs b/src/WixToolset.Data/Bind/BindResult.cs index 917bebca..1b81ab78 100644 --- a/src/WixToolset.Data/Bind/BindResult.cs +++ b/src/WixToolset.Data/Bind/BindResult.cs | |||
@@ -6,14 +6,8 @@ namespace WixToolset.Data.Bind | |||
6 | 6 | ||
7 | public class BindResult | 7 | public class BindResult |
8 | { | 8 | { |
9 | public BindResult(IEnumerable<FileTransfer> fileTransfers, IEnumerable<string> contentFilePaths) | 9 | public IEnumerable<FileTransfer> FileTransfers { get; set; } |
10 | { | ||
11 | this.FileTransfers = fileTransfers; | ||
12 | this.ContentFilePaths = contentFilePaths; | ||
13 | } | ||
14 | 10 | ||
15 | public IEnumerable<FileTransfer> FileTransfers { get; } | 11 | public IEnumerable<string> ContentFilePaths { get; set; } |
16 | |||
17 | public IEnumerable<string> ContentFilePaths { get; } | ||
18 | } | 12 | } |
19 | } \ No newline at end of file | 13 | } |