1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-02-20 21:16:56 +00:00
Lidarr/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
No EOL
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; }
}
}