public void Remove(string par1) { var item = Toasts.Where(x => x.Titel == par1).FirstOrDefault(); Toasts.Remove(item); OnToastsUpdated?.Invoke(); }