mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-25 17:17:02 +00:00
Added missing property to CommandResource.
This commit is contained in:
parent
44e6c46337
commit
e05365a669
1 changed files with 12 additions and 0 deletions
|
@ -78,6 +78,18 @@ public Boolean SendUpdatesToClient
|
||||||
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 a new issue