2019-01-26 13:40:16 +01:00

16 lines
340 B
C#

using System.Windows.Input;
using Prism.Commands;
using Prism.Mvvm;
namespace MaterialModernWPF.View
{
public class ShellViewModel : BindableBase
{
public ShellViewModel()
{
GcCollectCommand = new DelegateCommand(System.GC.Collect);
}
public ICommand GcCollectCommand {get; }
}
}