mirror of
https://github.com/Lidarr/Lidarr
synced 2026-04-30 08:31:27 +02:00
13 lines
No EOL
315 B
C#
13 lines
No EOL
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; }
|
|
}
|
|
} |