1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/NzbDrone.Core/Jobs/Framework/JobDefinition.cs

21 lines
441 B
C#
Raw Normal View History

using System.Linq;
using System;
using NzbDrone.Core.Datastore;
2011-04-20 03:20:20 +02:00
2013-03-05 06:20:47 +01:00
namespace NzbDrone.Core.Jobs.Framework
2011-04-20 03:20:20 +02:00
{
public class JobDefinition : ModelBase
2011-04-20 03:20:20 +02:00
{
public Boolean Enable { get; set; }
public String TypeName { get; set; }
public String Name { get; set; }
public Int32 Interval { get; set; }
public DateTime LastExecution { get; set; }
public Boolean Success { get; set; }
}
}