mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2026-01-04 23:29:58 +01:00
9 lines
189 B
C#
9 lines
189 B
C#
using Data.Models;
|
|
namespace Components.Interfaces;
|
|
|
|
public interface IBlogNotificationService
|
|
{
|
|
event Action<BlogPost>? BlogPostChanged;
|
|
Task SendNotification(BlogPost post);
|
|
}
|