1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-19 05:38:53 +00:00
Sonarr/NzbDrone.Core/Providers/Timers/ITimer.cs

11 lines
177 B
C#
Raw Normal View History

2011-04-20 01:20:20 +00:00
namespace NzbDrone.Core.Providers.Timers
{
public interface ITimer
{
string Name { get; }
int DefaultInterval { get; }
void Start();
}
}