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

13 lines
318 B

using System.IO.Abstractions;
namespace Recyclarr.TrashLib.Startup;
public interface IAppPaths
{
IDirectoryInfo AppDataDirectory { get; }
IDirectoryInfo LogDirectory { get; }
IDirectoryInfo ReposDirectory { get; }
IDirectoryInfo CacheDirectory { get; }
IDirectoryInfo ConfigsDirectory { get; }
}