mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 20:42:37 +01:00
13 lines
315 B
C#
13 lines
315 B
C#
using System;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Jobs
|
|
{
|
|
public class JobDefinition : ModelBase
|
|
{
|
|
public String Name { get; set; }
|
|
public Int32 Interval { get; set; }
|
|
public DateTime LastExecution { get; set; }
|
|
public Boolean Success { get; set; }
|
|
}
|
|
} |