From 7d302ba01db5b2a9e255cfade17b1c3d687fdee2 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Fri, 19 Oct 2018 02:57:04 -0700 Subject: Minor code cleanup/reorganization --- .../ExtensibilityServices/FileTransfer.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/WixToolset.Core/ExtensibilityServices/FileTransfer.cs (limited to 'src/WixToolset.Core/ExtensibilityServices/FileTransfer.cs') diff --git a/src/WixToolset.Core/ExtensibilityServices/FileTransfer.cs b/src/WixToolset.Core/ExtensibilityServices/FileTransfer.cs new file mode 100644 index 00000000..2cad7cce --- /dev/null +++ b/src/WixToolset.Core/ExtensibilityServices/FileTransfer.cs @@ -0,0 +1,20 @@ +// 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.Core.ExtensibilityServices +{ + using WixToolset.Data; + using WixToolset.Extensibility.Data; + + internal class FileTransfer : IFileTransfer + { + public string Source { get; set; } + + public string Destination { get; set; } + + public bool Move { get; set; } + + public SourceLineNumber SourceLineNumbers { get; set; } + + public bool Redundant { get; set; } + } +} -- cgit v1.2.3-55-g6feb