You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Trash/Sonarr/ReleaseProfile/IReleaseProfileGuideParser.cs

12 lines
342 B

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