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

9 lines
152 B
C#

namespace Jackett.Common.Services.Interfaces
{
public interface ITrayLockService
{
void WaitForSignal();
void Signal();
}
}