using GalaSoft.MvvmLight.Command; using GalaSoft.MvvmLight.Views; using ModernKeePass.Common; using ModernKeePass.Models; namespace ModernKeePass.ViewModels { public class BreadcrumbVm { public RelayCommand NavigateCommand { get; } public BreadcrumbVm(INavigationService navigation) { NavigateCommand = new RelayCommand(groupId => navigation.NavigateTo(Constants.Navigation.GroupPage, new NavigationItem {Id = groupId}), groupId => !string.IsNullOrEmpty(groupId)); } } }