mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Scheduled Tasks should work as long as they are registered.
This commit is contained in:
parent
fa8f67d7fe
commit
32431540c5
21 changed files with 253 additions and 106 deletions
12
NzbDrone.Core/Jobs/ScheduledTask.cs
Normal file
12
NzbDrone.Core/Jobs/ScheduledTask.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using NzbDrone.Core.Datastore;
|
||||
|
||||
namespace NzbDrone.Core.Jobs
|
||||
{
|
||||
public class ScheduledTask : ModelBase
|
||||
{
|
||||
public String Name { get; set; }
|
||||
public Int32 Interval { get; set; }
|
||||
public DateTime LastExecution { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue