Sonarr/src/NzbDrone.Core/Jobs/ScheduledTask.cs

12 lines
272 B
C#
Raw Normal View History

using System;
using NzbDrone.Core.Datastore;
2011-04-20 01:20:20 +00:00
2013-03-05 05:37:33 +00:00
namespace NzbDrone.Core.Jobs
2011-04-20 01:20:20 +00:00
{
public class ScheduledTask : ModelBase
2011-04-20 01:20:20 +00:00
{
public string TypeName { get; set; }
public int Interval { get; set; }
2011-04-20 01:20:20 +00:00
public DateTime LastExecution { get; set; }
}
}