1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-01 04:36:37 +00:00
Sonarr/NzbDrone.Core/Jobs/JobDefinition.cs

21 lines
431 B
C#
Raw Normal View History

using System.Linq;
using System;
using NzbDrone.Core.Datastore;
2011-04-20 01:20:20 +00:00
namespace NzbDrone.Core.Jobs
2011-04-20 01:20:20 +00:00
{
public class JobDefinition : ModelBase
2011-04-20 01:20:20 +00:00
{
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; }
}
}