* update dependencies * add playlists * add playlist support to schedules * playout builder (flood) supports playlists * update changelog
7 lines
233 B
C#
7 lines
233 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections;
|
|
|
|
public record ReplacePlaylistItems(int PlaylistId, string Name, List<ReplacePlaylistItem> Items)
|
|
: IRequest<Either<BaseError, List<PlaylistItemViewModel>>>;
|