mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
18 lines
445 B
C#
18 lines
445 B
C#
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;
|
|
}
|
|
}
|
|
}
|