main
cs 20 lines 682 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 System.Collections.Generic;
6 using WixToolset.Core.Native;
7
8 internal class CompletedCabinetWorkItem
9 {
10 public CompletedCabinetWorkItem(int diskId, IReadOnlyCollection<CabinetCreated> created)
11 {
12 this.DiskId = diskId;
13 this.CreatedCabinets = created;
14 }
15
16 public int DiskId { get; }
17
18 public IReadOnlyCollection<CabinetCreated> CreatedCabinets { get; }
19 }
20 }