CounterDroneBackend/src/CounterDrone.Core/IPathProvider.cs

12 lines
281 B
C#

namespace CounterDrone.Core
{
/// <summary>路径提供者接口 — 隔离文件系统依赖</summary>
public interface IPathProvider
{
string GetDataRoot();
string GetMainDbPath();
string GetFramesDir();
string GetModelsDir();
}
}