namespace Recyclarr.TrashLib.Config.Services; public interface IServiceConfiguration { SupportedServices ServiceType { get; } string? InstanceName { get; } Uri BaseUrl { get; } string ApiKey { get; } bool DeleteOldCustomFormats { get; } ICollection CustomFormats { get; init; } QualityDefinitionConfig? QualityDefinition { get; init; } }