17 lines
376 B
C#
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;
|
|
}
|
|
}
|
|
}
|