Files
ersatztv/ErsatzTV.Application/Channels/Commands/DeleteChannel.cs
T
2021-02-08 21:13:53 -06:00

10 lines
226 B
C#

using System.Threading.Tasks;
using ErsatzTV.Core;
using LanguageExt;
using MediatR;
namespace ErsatzTV.Application.Channels.Commands
{
public record DeleteChannel(int ChannelId) : IRequest<Either<BaseError, Task>>;
}