add ability to configure scheduled task time limit

This commit is contained in:
Luke Pulverenti
2015-03-05 13:54:04 -05:00
parent 6e1178a07b
commit 0a7dc313fd
7 changed files with 36 additions and 82 deletions

View File

@@ -36,5 +36,11 @@ namespace MediaBrowser.Model.Tasks
/// </summary>
/// <value>The day of week.</value>
public DayOfWeek? DayOfWeek { get; set; }
/// <summary>
/// Gets or sets the maximum runtime ms.
/// </summary>
/// <value>The maximum runtime ms.</value>
public int? MaxRuntimeMs { get; set; }
}
}