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