Files
speckle.xunit.runner.wpf/xunit.runner.wpf/ViewModel/RecentAssemblyViewModel.cs
T
2016-05-20 11:11:23 -07:00

17 lines
376 B
C#

using System.Windows.Input;
namespace Xunit.Runner.Wpf.ViewModel
{
public class RecentAssemblyViewModel
{
public string FilePath { get; }
public ICommand Command { get; }
public RecentAssemblyViewModel(string filePath, ICommand command)
{
this.FilePath = filePath;
this.Command = command;
}
}
}