diff options
| author | Rob Mensching <rob@firegiant.com> | 2018-07-23 13:46:09 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2018-07-23 13:46:09 -0700 |
| commit | e130a7a296696e3a7b1229cf580de393b3f20cbd (patch) | |
| tree | c7677e1fcb88bfd88b9a314ccc23d987f8bbc870 /src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs | |
| parent | d3da4f5cc6f07376a783ba4bdd03c3bb8dc5e480 (diff) | |
| download | wix-e130a7a296696e3a7b1229cf580de393b3f20cbd.tar.gz wix-e130a7a296696e3a7b1229cf580de393b3f20cbd.tar.bz2 wix-e130a7a296696e3a7b1229cf580de393b3f20cbd.zip | |
Reorganize data into Extensibility.Data namespace
Diffstat (limited to 'src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs b/src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs new file mode 100644 index 00000000..edcf82e0 --- /dev/null +++ b/src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs | |||
| @@ -0,0 +1,15 @@ | |||
| 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; | ||
| 6 | |||
| 7 | public interface IExpectedExtractFile | ||
| 8 | { | ||
| 9 | Uri Uri { get; set; } | ||
| 10 | |||
| 11 | int EmbeddedFileIndex { get; set; } | ||
| 12 | |||
| 13 | string OutputPath { get; set; } | ||
| 14 | } | ||
| 15 | } \ No newline at end of file | ||
