1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-25 01:02:05 +00: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; }
}
}