mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 12:33:00 +02:00
job structure cleanup.
This commit is contained in:
21
NzbDrone.Core/Jobs/Framework/JobDefinition.cs
Normal file
21
NzbDrone.Core/Jobs/Framework/JobDefinition.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user