mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
13 lines
316 B
C#
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; }
|
|
}
|
|
|
|
}
|