main
cs 15 lines 563 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.BootstrapperApplicationApi
4 {
5 /// <summary>
6 /// Default implementation of <see cref="IOverridableVariableInfo"/>.
7 /// </summary>
8 internal class OverridableVariableInfo : IOverridableVariableInfo
9 {
10 /// <inheritdoc />
11 public string Name { get; internal set; }
12
13 internal OverridableVariableInfo() { }
14 }
15 }