You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/TrashLib/IAppPaths.cs

16 lines
412 B

namespace TrashLib;
public interface IAppPaths
{
void SetAppDataPath(string path);
string GetAppDataPath();
string ConfigPath { get; }
string SettingsPath { get; }
string LogDirectory { get; }
string RepoDirectory { get; }
string CacheDirectory { get; }
string DefaultConfigFilename { get; }
bool IsAppDataPathValid { get; }
string DefaultAppDataDirectoryName { get; }
}