Added missing property to CommandResource.

This commit is contained in:
Taloth Saldono 2015-08-01 02:41:48 +02:00
parent 44e6c46337
commit e05365a669
1 changed files with 12 additions and 0 deletions

View File

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