splited jobprovider into jobrepo, jobcontroller, moved to object db.

This commit is contained in:
kay.one 2013-02-17 23:59:43 -08:00
commit 40f3a8663d
38 changed files with 635 additions and 634 deletions

View file

@ -0,0 +1,21 @@
using System.Linq;
using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Jobs
{
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; }
}
}