Files
Hyperbar/Hyperbar.Desktop.Contextual/ContextualCommandViewModel.cs
T
2024-01-04 20:53:49 +00:00

14 lines
317 B
C#

namespace Hyperbar.Desktop.Contextual;
public class ContextualCommandViewModel :
ICommandViewModel,
ITemplatedViewModel
{
public ContextualCommandViewModel(ITemplateFactory templateFactory)
{
TemplateFactory = templateFactory;
}
public ITemplateFactory TemplateFactory { get; }
}