main
cs 21 lines 733 Bytes
Raw
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.Core.WindowsInstaller
4 {
5 using System.Collections.Generic;
6 using System.Xml.Linq;
7 using WixToolset.Data;
8 using WixToolset.Data.WindowsInstaller;
9 using WixToolset.Extensibility.Data;
10
11 internal class WindowsInstallerDecompileResult : IWindowsInstallerDecompileResult
12 {
13 public WindowsInstallerData Data { get; set; }
14
15 public XDocument Document { get; set; }
16
17 public IList<string> ExtractedFilePaths { get; set; }
18
19 public Platform? Platform { get; set; }
20 }
21 }