blob: 8b90c588af7256bae92c6bd86cbc6e8d2ab6282e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// 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.
namespace WixToolset.BootstrapperApplicationApi
{
/// <summary>
/// Default implementation of <see cref="IOverridableVariableInfo"/>.
/// </summary>
internal class OverridableVariableInfo : IOverridableVariableInfo
{
/// <inheritdoc />
public string Name { get; internal set; }
internal OverridableVariableInfo() { }
}
}
|