mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 04:21:27 +02:00
15 lines
256 B
C#
15 lines
256 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface ITimerProvider
|
|
{
|
|
void ResetTimer();
|
|
void StartTimer();
|
|
void StopTimer();
|
|
}
|
|
}
|