IW4M-Admin/SharedLibraryCore/Interfaces/IBasePathProvider.cs

14 lines
390 B
C#
Raw Normal View History

namespace SharedLibraryCore.Interfaces
{
/// <summary>
2022-01-26 11:32:16 -05:00
/// defines the capabilities for providing a base path
/// unused as of now, will be used later during refactorying
/// </summary>
public interface IBasePathProvider
{
/// <summary>
2022-01-26 11:32:16 -05:00
/// working directory of IW4MAdmin
/// </summary>
string BasePath { get; }
}
2022-01-26 11:32:16 -05:00
}