using System.Collections.Generic; using System.Threading.Tasks; using ErsatzTV.Core.Domain; using LanguageExt; namespace ErsatzTV.Core.Interfaces.Repositories { public interface IFFmpegProfileRepository { Task Add(FFmpegProfile ffmpegProfile); Task> Get(int id); Task> GetAll(); Task Update(FFmpegProfile ffmpegProfile); Task Delete(int ffmpegProfileId); } }