mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
4bb4faf626
Still need to remove System.Data.Sqlite, prefer an option in OrmLite to pluralize table names.
18 lines
485 B
C#
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; }
|
|
}
|
|
} |