1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00
Files
Radarr/src/NzbDrone.Api/System/Tasks/TaskResource.cs
2015-10-03 21:14:06 +02:00

15 lines
372 B
C#

using System;
using NzbDrone.Api.REST;
namespace NzbDrone.Api.System.Tasks
{
public class TaskResource : RestResource
{
public string Name { get; set; }
public string TaskName { get; set; }
public int Interval { get; set; }
public DateTime LastExecution { get; set; }
public DateTime NextExecution { get; set; }
}
}