Files
ersatztv/ErsatzTV.Application/FFmpegProfiles/Commands/CopyFFmpegProfile.cs
T

10 lines
252 B
C#

using ErsatzTV.Core;
using LanguageExt;
using MediatR;
namespace ErsatzTV.Application.FFmpegProfiles.Commands
{
public record CopyFFmpegProfile
(int FFmpegProfileId, string Name) : IRequest<Either<BaseError, FFmpegProfileViewModel>>;
}