Web-Development-with-Blazor.../Chapter12/MyBlog/Components/Interfaces/IBlogNotificationService.cs
2023-02-17 15:28:17 +01:00

9 lines
189 B
C#

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