Files
ersatztv/ErsatzTV.Application/Channels/Commands/BulkDeleteChannels.cs
T
2026-07-02 19:07:35 +02:00

6 lines
165 B
C#

using ErsatzTV.Core;
namespace ErsatzTV.Application.Channels;
public record BulkDeleteChannels(IReadOnlyList<int> ChannelIds) : IRequest<Either<BaseError, Unit>>;