* update dependencies * add playlists * add playlist support to schedules * playout builder (flood) supports playlists * update changelog
6 lines
185 B
C#
6 lines
185 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.MediaCollections;
|
|
|
|
public record CreatePlaylist(int PlaylistGroupId, string Name) : IRequest<Either<BaseError, PlaylistViewModel>>;
|