9 lines
192 B
C#
9 lines
192 B
C#
using ErsatzTV.Core.Domain;
|
|
|
|
namespace ErsatzTV.Core.Interfaces.Repositories;
|
|
|
|
public interface IFFmpegProfileRepository
|
|
{
|
|
Task<FFmpegProfile> Copy(int ffmpegProfileId, string name);
|
|
}
|