using Newtonsoft.Json.Linq; using Recyclarr.TrashLib.Config.Services; namespace Recyclarr.TrashLib.Services.CustomFormat.Api; public interface IQualityProfileService { Task> GetQualityProfiles(IServiceConfiguration config); Task UpdateQualityProfile(IServiceConfiguration config, JObject profileJson, int id); }