1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-01 04:36:37 +00:00
Sonarr/NzbDrone.Core/Providers/Timers/ITimer.cs
2011-04-19 18:20:20 -07:00

11 lines
No EOL
177 B
C#

namespace NzbDrone.Core.Providers.Timers
{
public interface ITimer
{
string Name { get; }
int DefaultInterval { get; }
void Start();
}
}