diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Core.ExtensionCache/CachedExtension.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/WixToolset.Core.ExtensionCache/CachedExtension.cs b/src/WixToolset.Core.ExtensionCache/CachedExtension.cs new file mode 100644 index 00000000..9ed874d9 --- /dev/null +++ b/src/WixToolset.Core.ExtensionCache/CachedExtension.cs | |||
@@ -0,0 +1,20 @@ | |||
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 | public class CachedExtension | ||
6 | { | ||
7 | internal 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 | } | ||