internal void Remove(Notification notification) => notificationList.Remove(notificationList.FirstOrDefault(g => g.Notification.Equals(notification)));
 internal void Update(Notification notification) => notificationList.FirstOrDefault(g => g.Options.Guid.Equals(notification.Options.Guid)).Notification = notification;