add custom title option to schedule items (#116)

This commit is contained in:
Jason Dove
2021-03-29 21:46:03 +00:00
committed by GitHub
parent a62c4ecfcf
commit 745b03af73
21 changed files with 2020 additions and 56 deletions
@@ -15,7 +15,8 @@ namespace ErsatzTV.Application.ProgramSchedules
ProgramScheduleItemCollectionType collectionType,
MediaCollectionViewModel collection,
NamedMediaItemViewModel mediaItem,
int count) : base(
int count,
string customTitle) : base(
id,
index,
startType,
@@ -23,7 +24,8 @@ namespace ErsatzTV.Application.ProgramSchedules
PlayoutMode.Multiple,
collectionType,
collection,
mediaItem) =>
mediaItem,
customTitle) =>
Count = count;
public int Count { get; }