diff options
Diffstat (limited to 'src/WixToolset.Data/Bind/BindVariable.cs')
-rw-r--r-- | src/WixToolset.Data/Bind/BindVariable.cs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/WixToolset.Data/Bind/BindVariable.cs b/src/WixToolset.Data/Bind/BindVariable.cs new file mode 100644 index 00000000..06c004e1 --- /dev/null +++ b/src/WixToolset.Data/Bind/BindVariable.cs | |||
@@ -0,0 +1,33 @@ | |||
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.Data.Rows | ||
4 | { | ||
5 | /// <summary> | ||
6 | /// Specialization of a row for the WixVariable table. | ||
7 | /// </summary> | ||
8 | public sealed class BindVariable | ||
9 | { | ||
10 | /// <summary> | ||
11 | /// Gets or sets the source line number. | ||
12 | /// </summary> | ||
13 | public SourceLineNumber SourceLineNumbers { get; set; } | ||
14 | |||
15 | /// <summary> | ||
16 | /// Gets or sets the variable identifier. | ||
17 | /// </summary> | ||
18 | /// <value>The variable identifier.</value> | ||
19 | public string Id { get; set; } | ||
20 | |||
21 | /// <summary> | ||
22 | /// Gets or sets the variable's value. | ||
23 | /// </summary> | ||
24 | /// <value>The variable's value.</value> | ||
25 | public string Value { get; set; } | ||
26 | |||
27 | /// <summary> | ||
28 | /// Gets or sets whether this variable is overridable. | ||
29 | /// </summary> | ||
30 | /// <value>Whether this variable is overridable.</value> | ||
31 | public bool Overridable { get; set; } | ||
32 | } | ||
33 | } | ||