namespace MediaBrowser.Model.Tasks { /// /// Class containing options for tasks. /// public class TaskOptions { /// /// Gets or sets the maximum runtime in ticks. /// /// The ticks. public long? MaxRuntimeTicks { get; set; } } }