9 lines
242 B
C#
9 lines
242 B
C#
namespace Hyperbar.Desktop.Contextual;
|
|
|
|
public class ContextualCommandViewModel(ITemplateFactory templateFactory) :
|
|
ICommandViewModel,
|
|
ITemplatedViewModel
|
|
{
|
|
public ITemplateFactory TemplateFactory { get; } = templateFactory;
|
|
}
|