main
cs 19 lines 661 Bytes
Raw
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.Extensibility.Data
4 {
5 /// <summary>
6 /// Used for resolved directory information.
7 /// </summary>
8 public interface IResolvedDirectory
9 {
10 /// <summary>The directory parent.</summary>
11 string DirectoryParent { get; set; }
12
13 /// <summary>The name of this directory.</summary>
14 string Name { get; set; }
15
16 /// <summary>The path of this directory.</summary>
17 string Path { get; set; }
18 }
19 }