Merge pull request #2533 from Qstick/patch-1

Fixed: Removes Lidarr legacy command result variables
pull/2534/head
Jamie 6 years ago committed by GitHub
commit 55963085bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,10 +6,10 @@ namespace Ombi.Api.Lidarr.Models
public class CommandResult public class CommandResult
{ {
public string name { get; set; } public string name { get; set; }
public DateTime startedOn { get; set; } public DateTime queued { get; set; }
public DateTime stateChangeTime { get; set; } public DateTime stateChangeTime { get; set; }
public bool sendUpdatesToClient { get; set; } public bool sendUpdatesToClient { get; set; }
public string state { get; set; } public string status { get; set; }
public int id { get; set; } public int id { get; set; }
} }
} }

Loading…
Cancel
Save