// 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.Bind { /// /// Structure used for resolved directory information. /// public struct ResolvedDirectory { /// /// Constructor for ResolvedDirectory. /// /// Parent directory. /// The directory name. public ResolvedDirectory(string directoryParent, string name) { this.DirectoryParent = directoryParent; this.Name = name; this.Path = null; } /// The directory parent. public string DirectoryParent { get; set; } /// The name of this directory. public string Name { get; set; } /// The path of this directory. public string Path { get; set; } } }