Web-Development-with-Blazor.../Chapter13/MyBlog/Components/Interfaces/IBlogNotificationService.cs

9 lines
189 B
C#
Raw Normal View History

2023-02-17 15:28:17 +01:00
using Data.Models;
namespace Components.Interfaces;
public interface IBlogNotificationService
{
event Action<BlogPost>? BlogPostChanged;
Task SendNotification(BlogPost post);
}