From e130a7a296696e3a7b1229cf580de393b3f20cbd Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Mon, 23 Jul 2018 13:46:09 -0700 Subject: Reorganize data into Extensibility.Data namespace --- src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs (limited to 'src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs') 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 @@ +// 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. + +namespace WixToolset.Extensibility.Data +{ + using System; + + public interface IExpectedExtractFile + { + Uri Uri { get; set; } + + int EmbeddedFileIndex { get; set; } + + string OutputPath { get; set; } + } +} \ No newline at end of file -- cgit v1.2.3-55-g6feb