QrRapido/Services/IMarkdownService.cs

13 lines
369 B
C#

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