Jackett/src/Jackett.Common/Services/Interfaces/IFilePermissionService.cs

8 lines
151 B
C#

namespace Jackett.Common.Services.Interfaces
{
public interface IFilePermissionService
{
void MakeFileExecutable(string path);
}
}