using Prism.Mvvm; using System.Windows.Input; using JetBrains.Annotations; namespace PhotoRenamer.File.ViewModels { [UsedImplicitly] public class ViewAViewModel : BindableBase { public ICommand SelectFilesCommand { get; } public ICommand ClearCommand { get; } } }