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