mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 09:59:06 -07:00
15 lines
350 B
C#
15 lines
350 B
C#
namespace MediaBrowser.Model.Tasks
|
|
{
|
|
/// <summary>
|
|
/// Class containing options for tasks.
|
|
/// </summary>
|
|
public class TaskOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the maximum runtime in ticks.
|
|
/// </summary>
|
|
/// <value>The ticks.</value>
|
|
public long? MaxRuntimeTicks { get; set; }
|
|
}
|
|
}
|