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

17 lines
378 B
C#

using ErsatzTV.Core;
using ErsatzTV.Core.Domain;
using LanguageExt;
using MediatR;
namespace ErsatzTV.Application.Channels.Commands
{
public record UpdateChannel
(
int ChannelId,
string Name,
int Number,
int FFmpegProfileId,
string Logo,
StreamingMode StreamingMode) : IRequest<Either<BaseError, ChannelViewModel>>;
}