main
cs 19 lines 610 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.Bind
4 {
5 using WixToolset.Data.WindowsInstaller;
6
7 internal class PatchTransform
8 {
9 public PatchTransform(string baseline, WindowsInstallerData transform)
10 {
11 this.Baseline = baseline;
12 this.Transform = transform;
13 }
14
15 public string Baseline { get; }
16
17 public WindowsInstallerData Transform { get; }
18 }
19 }