* add setting for scripted playout build timeout * update dependencies
9 lines
240 B
C#
9 lines
240 B
C#
namespace ErsatzTV.Application.Configuration;
|
|
|
|
public class PlayoutSettingsViewModel
|
|
{
|
|
public int DaysToBuild { get; set; }
|
|
public bool SkipMissingItems { get; set; }
|
|
public int ScriptedScheduleTimeoutSeconds { get; set; }
|
|
}
|