mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
15 lines
375 B
C#
15 lines
375 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 double Interval { get; set; }
|
|
public DateTime LastExecution { get; set; }
|
|
public DateTime NextExecution { get; set; }
|
|
}
|
|
}
|