using System.Collections.Generic; using System.Threading.Tasks; namespace Trash.Sonarr.ReleaseProfile { public interface IReleaseProfileGuideParser { Task GetMarkdownData(ReleaseProfileType profileName); IDictionary ParseMarkdown(ReleaseProfileConfig config, string markdown); } }