wabbajack/Wabbajack.Paths/IPath.cs

8 lines
144 B
C#
Raw Normal View History

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