Added missing property to CommandResource.
This commit is contained in:
parent
44e6c46337
commit
e05365a669
|
@ -78,6 +78,18 @@ namespace NzbDrone.Api.Commands
|
||||||
set { }
|
set { }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean UpdateScheduledTask
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (Body != null) return Body.UpdateScheduledTask;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
set { }
|
||||||
|
}
|
||||||
|
|
||||||
public DateTime? LastExecutionTime { get; set; }
|
public DateTime? LastExecutionTime { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue