1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core/Jobs/JobDefinition.cs
markus101 4bb4faf626 Migrations
Still need to remove System.Data.Sqlite, prefer an option in OrmLite to pluralize table names.
2013-03-25 23:19:55 -07:00

18 lines
485 B
C#

using System;
using System.Linq;
using NzbDrone.Core.Datastore;
using ServiceStack.DataAnnotations;
namespace NzbDrone.Core.Jobs
{
[Alias("JobDefinitions")]
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; }
}
}