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/Startup/IAppPaths.cs

15 lines
377 B

using System.IO.Abstractions;
namespace TrashLib.Startup;
public interface IAppPaths
{
IDirectoryInfo AppDataDirectory { get; }
IFileInfo ConfigPath { get; }
IFileInfo SettingsPath { get; }
IDirectoryInfo LogDirectory { get; }
IDirectoryInfo RepoDirectory { get; }
IDirectoryInfo CacheDirectory { get; }
IDirectoryInfo ConfigsDirectory { get; }
}