1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 08:22:35 +01:00
Sonarr/NzbDrone.Core/Jobs/Framework/JobDefinition.cs
2013-03-04 21:20:47 -08:00

21 lines
441 B
C#

using System.Linq;
using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Jobs.Framework
{
public class JobDefinition : ModelBase
{
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; }
}
}