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