13 lines
441 B
C#
13 lines
441 B
C#
using QRRapidoApp.Models;
|
|
using QRRapidoApp.Models.ViewModels;
|
|
|
|
namespace QRRapidoApp.Services
|
|
{
|
|
public interface IMarkdownService
|
|
{
|
|
Task<ArticleViewModel?> GetArticleAsync(string slug, string culture, string contentFolder = "Tutoriais");
|
|
Task<List<ArticleMetadata>> GetAllArticlesAsync(string culture, string contentFolder = "Tutoriais");
|
|
Task<List<ArticleMetadata>> GetAllArticlesForSitemapAsync();
|
|
}
|
|
}
|