mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +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);
|
|||
|
|
}
|