Files
PhotoRenamer/PhotoRenamer.File/ViewModels/ViewAViewModel.cs
2019-12-14 17:27:34 +01:00

15 lines
301 B
C#

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; }
}
}