diff options
| author | Luke <luke.pulverenti@gmail.com> | 2015-03-04 12:47:09 -0500 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2015-03-04 12:47:09 -0500 |
| commit | 028d6177bdbe900822321dd0e605e8c5c83ae479 (patch) | |
| tree | c3ee64feed6d67454056308dbcc8ad4e9759a196 /MediaBrowser.Common/ScheduledTasks/TaskExecutionOptions.cs | |
| parent | 89009053ed24434d1818ae4663be124b68b079dd (diff) | |
| parent | 5b9999eccff26db4f285179ed0b682f46f6dad81 (diff) | |
Merge pull request #1029 from jabbera/scheduleWithEndTime3
Prototype 3 of max task length for scheduled tasks.
Diffstat (limited to 'MediaBrowser.Common/ScheduledTasks/TaskExecutionOptions.cs')
| -rw-r--r-- | MediaBrowser.Common/ScheduledTasks/TaskExecutionOptions.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Common/ScheduledTasks/TaskExecutionOptions.cs b/MediaBrowser.Common/ScheduledTasks/TaskExecutionOptions.cs new file mode 100644 index 000000000..830e55f08 --- /dev/null +++ b/MediaBrowser.Common/ScheduledTasks/TaskExecutionOptions.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace MediaBrowser.Common.ScheduledTasks +{ + /// <summary> + /// A class that encomposases all common task run properties. + /// </summary> + public class TaskExecutionOptions + { + public int? MaxRuntimeMs { get; set; } + } +} |
