mirror of
https://github.com/Radarr/Radarr
synced 2026-01-04 14:42:26 +01:00
14 lines
256 B
C#
14 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();
|
|
}
|
|
}
|