mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-28 18:59:54 +00:00
63336ed58d
Attempt at styling configuration page, lots of work to go though.
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();
|
|
}
|
|
}
|