mirror of
https://github.com/Radarr/Radarr
synced 2025-01-19 14:11:40 +00:00
11 lines
177 B
C#
11 lines
177 B
C#
|
namespace NzbDrone.Core.Providers.Timers
|
|||
|
{
|
|||
|
public interface ITimer
|
|||
|
{
|
|||
|
string Name { get; }
|
|||
|
|
|||
|
int DefaultInterval { get; }
|
|||
|
|
|||
|
void Start();
|
|||
|
}
|
|||
|
}
|