mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-13 07:23:14 +00:00
11 lines
No EOL
177 B
C#
11 lines
No EOL
177 B
C#
namespace NzbDrone.Core.Providers.Timers
|
|
{
|
|
public interface ITimer
|
|
{
|
|
string Name { get; }
|
|
|
|
int DefaultInterval { get; }
|
|
|
|
void Start();
|
|
}
|
|
} |