(cherry picked from commit b888b044d61c3787ce658963c6e5c3ef6f3323a1)pull/5547/head
parent
66caec31c9
commit
69ed531850
@ -0,0 +1,16 @@
|
|||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
namespace NzbDrone.Core.Download.Clients.Deluge
|
||||||
|
{
|
||||||
|
public class DelugeLabel
|
||||||
|
{
|
||||||
|
[JsonProperty(PropertyName = "apply_move_completed")]
|
||||||
|
public bool ApplyMoveCompleted { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty(PropertyName = "move_completed")]
|
||||||
|
public bool MoveCompleted { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty(PropertyName = "move_completed_path")]
|
||||||
|
public string MoveCompletedPath { get; set; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue