2019-12-14 16:27:17 +01:00

13 lines
251 B
C#

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