using Recyclarr.TrashGuide; namespace Recyclarr.Config.Models; public interface IServiceConfiguration { SupportedServices ServiceType { get; } string InstanceName { get; } Uri BaseUrl { get; } string ApiKey { get; } bool DeleteOldCustomFormats { get; } ICollection CustomFormats { get; } QualityDefinitionConfig? QualityDefinition { get; } IReadOnlyCollection QualityProfiles { get; } bool ReplaceExistingCustomFormats { get; } }