Update example project

This commit is contained in:
Stone_Red
2024-03-02 19:11:36 +01:00
parent e9927528e9
commit 3688e7dde4
@@ -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}");
}
};