1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core/Jobs/JobDefinition.cs

18 lines
485 B
C#
Raw Normal View History

using System;
2013-03-05 08:37:33 +03:00
using System.Linq;
using NzbDrone.Core.Datastore;
using ServiceStack.DataAnnotations;
2011-04-20 04:20:20 +03:00
2013-03-05 08:37:33 +03:00
namespace NzbDrone.Core.Jobs
2011-04-20 04:20:20 +03:00
{
[Alias("JobDefinitions")]
public class JobDefinition : ModelBase
2011-04-20 04:20:20 +03:00
{
public Boolean Enable { get; set; }
public String Type { get; set; }
2011-04-20 04:20:20 +03:00
public String Name { get; set; }
public Int32 Interval { get; set; }
public DateTime LastExecution { get; set; }
public Boolean Success { get; set; }
}
}