1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 08:22:35 +01:00
Sonarr/NzbDrone.Core/Jobs/JobDefinition.cs
2013-03-25 23:19:56 -07:00

15 lines
400 B
C#

using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Jobs
{
public class JobDefinition : ModelBase
{
public Boolean Enable { get; set; }
public String Type { get; set; }
public String Name { get; set; }
public Int32 Interval { get; set; }
public DateTime LastExecution { get; set; }
public Boolean Success { get; set; }
}
}