* 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
23 lines
834 B
C#
23 lines
834 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public class PlaylistItem
|
|
{
|
|
public int Id { get; set; }
|
|
public int Index { get; set; }
|
|
public int PlaylistId { get; set; }
|
|
public Playlist Playlist { get; set; }
|
|
public CollectionType CollectionType { get; set; }
|
|
public int? CollectionId { get; set; }
|
|
public Collection Collection { get; set; }
|
|
public int? MediaItemId { get; set; }
|
|
public MediaItem MediaItem { get; set; }
|
|
public int? MultiCollectionId { get; set; }
|
|
public MultiCollection MultiCollection { get; set; }
|
|
public int? SmartCollectionId { get; set; }
|
|
public SmartCollection SmartCollection { get; set; }
|
|
public PlaybackOrder PlaybackOrder { get; set; }
|
|
public int? Count { get; set; }
|
|
public bool PlayAll { get; set; }
|
|
public bool IncludeInProgramGuide { get; set; }
|
|
}
|