wabbajack/Wabbajack.Common/Paths/IPath.cs
2020-08-05 16:01:45 -06:00

13 lines
316 B
C#

namespace Wabbajack.Common
{
public interface IPath
{
/// <summary>
/// Get the final file name, for c:\bar\baz this is `baz` for c:\bar.zip this is `bar.zip`
/// for `bar.zip` this is `bar.zip`
/// </summary>
public RelativePath FileName { get; }
}
}