Files
ersatztv/ErsatzTV.Core/Scheduling/Engine/PlaylistContentResult.cs
T

9 lines
255 B
C#

using System.Collections.Immutable;
using ErsatzTV.Core.Domain;
namespace ErsatzTV.Core.Scheduling.Engine;
public record PlaylistContentResult(
PlaylistEnumerator PlaylistEnumerator,
ImmutableDictionary<CollectionKey, List<MediaItem>> Content);