* replace playout externaljsonfile and templatefile with schedulefile * add scripted schedule-based playout * wip - not functional yet * temp disable scripted playout creation * allow fast-forwarding block playouts * add xmltv block behavior setting
9 lines
234 B
C#
9 lines
234 B
C#
namespace ErsatzTV.Application.Configuration;
|
|
|
|
public class XmltvSettingsViewModel
|
|
{
|
|
public int DaysToBuild { get; set; }
|
|
public XmltvTimeZone TimeZone { get; set; }
|
|
public XmltvBlockBehavior BlockBehavior { get; set; }
|
|
}
|