13 lines
251 B
C#
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; }
|
|
}
|
|
}
|