namespace SharedLibraryCore.Interfaces
{
///
/// defines the capabilities for providing a base path
/// unused as of now, will be used later during refactorying
///
public interface IBasePathProvider
{
///
/// working directory of IW4MAdmin
///
string BasePath { get; }
}
}