diff options
Diffstat (limited to 'src/WixToolset.Extensibility/Data/DecompileResult.cs')
-rw-r--r-- | src/WixToolset.Extensibility/Data/DecompileResult.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Data/DecompileResult.cs b/src/WixToolset.Extensibility/Data/DecompileResult.cs new file mode 100644 index 00000000..29da4887 --- /dev/null +++ b/src/WixToolset.Extensibility/Data/DecompileResult.cs | |||
@@ -0,0 +1,13 @@ | |||
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 | |||
3 | namespace WixToolset.Extensibility.Data | ||
4 | { | ||
5 | using System.Collections.Generic; | ||
6 | |||
7 | public class DecompileResult | ||
8 | { | ||
9 | public string SourceDocumentPath { get; set; } | ||
10 | |||
11 | public IEnumerable<string> ExtractedFilePaths { get; set; } | ||
12 | } | ||
13 | } | ||