* rename collection type * split collections into separate pages * add rerun collection types, migration, editor * add rerun to classic schedule items * rerun plumbing in classic playout builder * start to implement rerun enumerator * add scheduledAt to enumerator movenext * maintain rerun history in db * fix shuffle * fix rerun allowed playback orders * fix updating rerun collections * update changelog; fix editing * update changelog
19 lines
407 B
C#
19 lines
407 B
C#
using ErsatzTV.Application.MediaCards;
|
|
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections;
|
|
|
|
public record MediaCollectionViewModel(
|
|
CollectionType CollectionType,
|
|
int Id,
|
|
string Name,
|
|
bool UseCustomPlaybackOrder,
|
|
MediaItemState State) : MediaCardViewModel(
|
|
Id,
|
|
Name,
|
|
string.Empty,
|
|
Name,
|
|
string.Empty,
|
|
State,
|
|
HasMediaInfo: false);
|