using QRRapidoApp.Models; using QRRapidoApp.Models.ViewModels; namespace QRRapidoApp.Services { public interface IMarkdownService { Task GetArticleAsync(string slug, string culture, string contentFolder = "Tutoriais"); Task> GetAllArticlesAsync(string culture, string contentFolder = "Tutoriais"); Task> GetAllArticlesForSitemapAsync(); } }