using System.Collections.Generic; using System.Threading.Tasks; namespace Trash.Radarr.CustomFormat.Guide { public interface ICustomFormatGuideParser { Task GetMarkdownData(); IList ParseMarkdown(string markdown); } }