/// <summary> /// Adds a notification towards the list. /// </summary> /// <param name="notification"> /// The notification. /// </param> public static void Add(ANotification notification) { if (!NotificationsList.Contains(notification)) { NotificationsList.Add(notification); } }