10 lines
237 B
C#
10 lines
237 B
C#
namespace Hyperbar.Desktop.Primary;
|
|
|
|
public class PrimaryCommandViewModel(ITemplateFactory templateFactory) :
|
|
ICommandViewModel,
|
|
ITemplatedViewModel
|
|
{
|
|
public ITemplateFactory TemplateFactory { get; } = templateFactory;
|
|
}
|
|
|