| 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.ExtensionCache |
| 4 | { |
| 5 | internal class CachedExtension |
| 6 | { |
| 7 | public CachedExtension(string id, string version, bool damaged) |
| 8 | { |
| 9 | this.Id = id; |
| 10 | this.Version = version; |
| 11 | this.Damaged = damaged; |
| 12 | } |
| 13 | |
| 14 | public string Id { get; } |
| 15 | |
| 16 | public string Version { get; } |
| 17 | |
| 18 | public bool Damaged { get; } |
| 19 | } |
| 20 | } |