15 lines
301 B
C#
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; }
|
|
}
|
|
}
|