Files
JoshHeaps.Net/JoshHeaps.Net/Services/Interfaces/IBlogService.cs
T
2026-03-06 17:05:48 -07:00

12 lines
287 B
C#

using JoshHeaps.Net.Models;
namespace JoshHeaps.Net.Services.Interfaces;
public interface IBlogService
{
Task<List<BlogPost>> GetAllPostsAsync();
Task<BlogPost?> GetPostBySlugAsync(string slug);
Task<List<BlogPost>> GetPostsByTagAsync(string tag);
void ClearCache();
}