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

10 lines
237 B
C#

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