Files
ersatztv/ErsatzTV.Core/Domain/Scheduling/PlayoutHistory.cs
T
Jason DoveandGitHub 12234c3e21 allow shuffling block items (#1571)
* allow shuffling block items

* fix drop down search results
2024-01-23 22:42:28 -06:00

24 lines
659 B
C#

namespace ErsatzTV.Core.Domain.Scheduling;
public class PlayoutHistory
{
public int Id { get; set; }
public int PlayoutId { get; set; }
public Playout Playout { get; set; }
public int BlockId { get; set; }
public Block Block { get; set; }
public PlaybackOrder PlaybackOrder { get; set; }
public int Seed { get; set; }
// something that uniquely identifies the collection within the block
public string Key { get; set; }
// last occurence of an item from this collection in the playout
public DateTime When { get; set; }
// details about the item
public string Details { get; set; }
}