Files
SabreTools/SabreTools.Library/Tools/ParentablePath.cs

18 lines
445 B
C#
Raw Normal View History

2020-07-26 23:39:33 -07:00
namespace SabreTools.Library.Tools
{
/// <summary>
/// A path that optionally contains a parent root
/// </summary>
public class ParentablePath
{
public string CurrentPath { get; set; }
public string ParentPath { get; set; }
public ParentablePath(string currentPath, string parentPath = null)
{
CurrentPath = currentPath;
ParentPath = parentPath;
}
}
}