1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Added missing property to CommandResource.

This commit is contained in:
Taloth Saldono 2015-08-01 02:41:48 +02:00
parent 44e6c46337
commit e05365a669

View File

@ -78,6 +78,18 @@ public Boolean SendUpdatesToClient
set { }
}
public Boolean UpdateScheduledTask
{
get
{
if (Body != null) return Body.UpdateScheduledTask;
return false;
}
set { }
}
public DateTime? LastExecutionTime { get; set; }
}
}