initial commit

This commit is contained in:
2019-12-14 16:27:17 +01:00
parent 9572114d62
commit 5f4ac1d3ef
20 changed files with 367 additions and 0 deletions

View File

@ -0,0 +1,12 @@
using Prism.Mvvm;
using System.Windows.Input;
namespace PhotoRenamer.File.ViewModels
{
public class ViewAViewModel : BindableBase
{
public ICommand SelectFilesCommand { get; }
public ICommand ClearCommand { get; }
}
}