Files
Hyperbar/Hyperbar.Desktop/Views/ContextualCommandViewModel.cs
T
2024-01-04 17:32:36 +00:00

12 lines
282 B
C#

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