using System.Collections.Generic; namespace Trash.Radarr.CustomFormat.Models { public class ProcessedConfigData { public List CustomFormats { get; init; } = new(); public List QualityProfiles { get; init; } = new(); } }