aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/ScheduledTasks/TaskExecutionOptions.cs
diff options
context:
space:
mode:
authorMike <github@barry.io>2015-02-25 15:55:01 -0500
committerMike <github@barry.io>2015-02-26 09:05:12 -0500
commit5b9999eccff26db4f285179ed0b682f46f6dad81 (patch)
tree7bb002e460d4668e0ee2fc20b8745fe848d5d6ed /MediaBrowser.Common/ScheduledTasks/TaskExecutionOptions.cs
parent17ea0217f57f4439d65edcfd2091f1bb47570438 (diff)
Prototype 2 of max task length for scheduled tasks.
Diffstat (limited to 'MediaBrowser.Common/ScheduledTasks/TaskExecutionOptions.cs')
-rw-r--r--MediaBrowser.Common/ScheduledTasks/TaskExecutionOptions.cs16
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; }
+ }
+}