7 lines
199 B
C#
7 lines
199 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.FFmpegProfiles;
|
|
|
|
public record CopyFFmpegProfile
|
|
(int FFmpegProfileId, string Name) : IRequest<Either<BaseError, FFmpegProfileViewModel>>;
|