aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/WixToolset.Mba.Core/IOverridableVariables.cs
blob: 3944913b44f4529cf131a5b1a15dde84e0216131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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
{
    using System.Collections.Generic;

    /// <summary>
    /// Overridable variable information from the BA manifest.
    /// </summary>
    public interface IOverridableVariables
    {
        /// <summary>
        /// Variable Dictionary of variable name to <see cref="IOverridableVariableInfo"/>.
        /// </summary>
        IDictionary<string, IOverridableVariableInfo> Variables { get; }
    }
}