1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-26 01:37:07 +00:00
Sonarr/NzbDrone.Core/Jobs/ScheduledTask.cs
2013-05-10 20:43:52 -07:00

12 lines
No EOL
274 B
C#

using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Jobs
{
public class ScheduledTask : ModelBase
{
public String TypeName { get; set; }
public Int32 Interval { get; set; }
public DateTime LastExecution { get; set; }
}
}