Files
Hyperbar/Hyperbar.Desktop.Contextual/ContextualCommandViewModel.cs
T
2024-01-04 23:02:51 +00:00

9 lines
242 B
C#

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