mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
15 lines
372 B
C#
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; }
|
|
}
|
|
}
|