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