job structure cleanup.

This commit is contained in:
kay.one
2013-03-04 21:20:47 -08:00
parent 5e77d51510
commit eaf6f94c02
35 changed files with 47 additions and 19 deletions

View File

@@ -0,0 +1,21 @@
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; }
}
}