From 3688e7dde4290e08bbb98bb26fecfdc0127eabe7 Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Sat, 2 Mar 2024 19:11:36 +0100 Subject: [PATCH] Update example project --- src/StoneRed.NetificationApi.Example/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/StoneRed.NetificationApi.Example/Program.cs b/src/StoneRed.NetificationApi.Example/Program.cs index 6d1629f..a1c4be4 100644 --- a/src/StoneRed.NetificationApi.Example/Program.cs +++ b/src/StoneRed.NetificationApi.Example/Program.cs @@ -21,7 +21,7 @@ notificationApiClient.RequestedNotificationsReceived += (sender, args) => Console.WriteLine("Requested notifications received"); foreach (NotificationReceivedData notificationReceiveData in args.Notifications) { - Console.WriteLine($"Notification received: {notificationReceiveData.Id}"); + Console.WriteLine($"Requested notification received: {notificationReceiveData.Id}"); } }; @@ -30,7 +30,7 @@ notificationApiClient.NewNotificationsReceived += (sender, args) => Console.WriteLine("New notifications received"); foreach (NotificationReceivedData notificationReceiveData in args.Notifications) { - Console.WriteLine($"New Notification received: {notificationReceiveData.Id}"); + Console.WriteLine($"New notification received: {notificationReceiveData.Id}"); } };