1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Jobs/ScheduledTask.cs

12 lines
274 B
C#
Raw Normal View History

using System;
using NzbDrone.Core.Datastore;
2011-04-20 04:20:20 +03:00
2013-03-05 08:37:33 +03:00
namespace NzbDrone.Core.Jobs
2011-04-20 04:20:20 +03:00
{
public class ScheduledTask : ModelBase
2011-04-20 04:20:20 +03:00
{
2013-05-11 02:53:50 +03:00
public String TypeName { get; set; }
2011-04-20 04:20:20 +03:00
public Int32 Interval { get; set; }
public DateTime LastExecution { get; set; }
}
}