using Recyclarr.TrashLib.Config.Services; using Recyclarr.TrashLib.Services.ReleaseProfile.Api.Objects; namespace Recyclarr.TrashLib.Services.ReleaseProfile.Api; public interface IReleaseProfileApiService { Task UpdateReleaseProfile(IServiceConfiguration config, SonarrReleaseProfile profile); Task CreateReleaseProfile(IServiceConfiguration config, SonarrReleaseProfile profile); Task> GetReleaseProfiles(IServiceConfiguration config); Task DeleteReleaseProfile(IServiceConfiguration config, int releaseProfileId); }