wabbajack/Wabbajack.Paths/IPath.cs

7 lines
122 B
C#
Raw Permalink Normal View History

2021-10-23 16:51:17 +00:00
namespace Wabbajack.Paths;
public interface IPath
2021-09-27 12:42:46 +00:00
{
2021-10-23 16:51:17 +00:00
Extension Extension { get; }
RelativePath FileName { get; }
2021-09-27 12:42:46 +00:00
}