1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-12 23:27:26 +00:00
Radarr/NzbDrone.Core/Jobs/JobDefinition.cs

15 lines
400 B
C#
Raw Normal View History

using System;
using NzbDrone.Core.Datastore;
2011-04-19 18:20:20 -07:00
2013-03-04 21:37:33 -08:00
namespace NzbDrone.Core.Jobs
2011-04-19 18:20:20 -07:00
{
public class JobDefinition : ModelBase
2011-04-19 18:20:20 -07:00
{
public Boolean Enable { get; set; }
public String Type { get; set; }
2011-04-19 18:20:20 -07:00
public String Name { get; set; }
public Int32 Interval { get; set; }
public DateTime LastExecution { get; set; }
public Boolean Success { get; set; }
}
}