aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Bind/BindResult.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Data/Bind/BindResult.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/WixToolset.Data/Bind/BindResult.cs b/src/WixToolset.Data/Bind/BindResult.cs
deleted file mode 100644
index 1b81ab78..00000000
--- a/src/WixToolset.Data/Bind/BindResult.cs
+++ /dev/null
@@ -1,13 +0,0 @@
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 IEnumerable<FileTransfer> FileTransfers { get; set; }
10
11 public IEnumerable<string> ContentFilePaths { get; set; }
12 }
13}