aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Bind/ResolvedDirectory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/Bind/ResolvedDirectory.cs')
-rw-r--r--src/WixToolset.Core/Bind/ResolvedDirectory.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/WixToolset.Core/Bind/ResolvedDirectory.cs b/src/WixToolset.Core/Bind/ResolvedDirectory.cs
new file mode 100644
index 00000000..6985f95d
--- /dev/null
+++ b/src/WixToolset.Core/Bind/ResolvedDirectory.cs
@@ -0,0 +1,31 @@
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
3namespace WixToolset.Bind
4{
5 /// <summary>
6 /// Structure used for resolved directory information.
7 /// </summary>
8 internal struct ResolvedDirectory
9 {
10 /// <summary>The directory parent.</summary>
11 public string DirectoryParent;
12
13 /// <summary>The name of this directory.</summary>
14 public string Name;
15
16 /// <summary>The path of this directory.</summary>
17 public string Path;
18
19 /// <summary>
20 /// Constructor for ResolvedDirectory.
21 /// </summary>
22 /// <param name="directoryParent">Parent directory.</param>
23 /// <param name="name">The directory name.</param>
24 public ResolvedDirectory(string directoryParent, string name)
25 {
26 this.DirectoryParent = directoryParent;
27 this.Name = name;
28 this.Path = null;
29 }
30 }
31}