mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
15 lines
400 B
C#
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; }
|
|
}
|
|
} |