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}"); } };