using Data.Models; namespace Components.Interfaces; public interface IBlogNotificationService { event Action? BlogPostChanged; Task SendNotification(BlogPost post); }