You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
480 B
16 lines
480 B
using System;
|
|
using NzbDrone.Api.REST;
|
|
using NzbDrone.Core.Messaging.Commands.Tracking;
|
|
|
|
namespace NzbDrone.Api.Commands
|
|
{
|
|
public class CommandResource : RestResource
|
|
{
|
|
public String Name { get; set; }
|
|
public String Message { get; set; }
|
|
public DateTime StartedOn { get; set; }
|
|
public DateTime StateChangeTime { get; set; }
|
|
public Boolean SendUpdatesToClient { get; set; }
|
|
public CommandStatus State { get; set; }
|
|
}
|
|
} |