7 lines
188 B
C#
7 lines
188 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.Channels;
|
|
|
|
public record BulkMoveChannelsToGroup(IReadOnlyList<int> ChannelIds, string Group)
|
|
: IRequest<Either<BaseError, Unit>>;
|