#nullable disable
using System;
namespace MediaBrowser.Model.Tasks
{
///
/// Class TaskTriggerInfo.
///
public class TaskTriggerInfo
{
///
/// Gets or sets the type.
///
/// The type.
public TaskTriggerInfoType Type { get; set; }
///
/// Gets or sets the time of day.
///
/// The time of day.
public long? TimeOfDayTicks { get; set; }
///
/// Gets or sets the interval.
///
/// The interval.
public long? IntervalTicks { get; set; }
///
/// Gets or sets the day of week.
///
/// The day of week.
public DayOfWeek? DayOfWeek { get; set; }
///
/// Gets or sets the maximum runtime ticks.
///
/// The maximum runtime ticks.
public long? MaxRuntimeTicks { get; set; }
}
}