Files
ersatztv/ErsatzTV.Core/Domain/Scheduling/RerunHistory.cs
T
Jason DoveandGitHub 245165c9d9 add rerun collection type (#2421)
* 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
2025-09-15 18:27:55 +00:00

14 lines
415 B
C#

namespace ErsatzTV.Core.Domain.Scheduling;
public class RerunHistory
{
public int Id { get; set; }
public int PlayoutId { get; set; }
public Playout Playout { get; set; }
public int RerunCollectionId { get; set; }
public RerunCollection RerunCollection { get; set; }
public int MediaItemId { get; set; }
public MediaItem MediaItem { get; set; }
public DateTime When { get; set; }
}