summaryrefslogtreecommitdiff
path: root/src/api/burn/WixToolset.Mba.Core/OverridableVariableInfo.cs
blob: b8e85c34d928f4bb1d239c5f70c4b17b5d371500 (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.Mba.Core
{
    /// <summary>
    /// Default implementation of <see cref="IOverridableVariableInfo"/>.
    /// </summary>
    internal class OverridableVariableInfo : IOverridableVariableInfo
    {
        /// <inheritdoc />
        public string Name { get; internal set; }

        internal OverridableVariableInfo() { }
    }
}