aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Bind/BindVariable.cs
blob: 06c004e1662082aea6badb6c5dc4bd9c72f17a3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// 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.Data.Rows
{
    /// <summary>
    /// Specialization of a row for the WixVariable table.
    /// </summary>
    public sealed class BindVariable
    {
        /// <summary>
        /// Gets or sets the source line number.
        /// </summary>
        public SourceLineNumber SourceLineNumbers { get; set; }

        /// <summary>
        /// Gets or sets the variable identifier.
        /// </summary>
        /// <value>The variable identifier.</value>
        public string Id { get; set; }

        /// <summary>
        /// Gets or sets the variable's value.
        /// </summary>
        /// <value>The variable's value.</value>
        public string Value { get; set; }

        /// <summary>
        /// Gets or sets whether this variable is overridable.
        /// </summary>
        /// <value>Whether this variable is overridable.</value>
        public bool Overridable { get; set; }
    }
}