12 lines
282 B
C#
12 lines
282 B
C#
namespace Hyperbar.Desktop;
|
|
|
|
public class ContextualCommandViewModel :
|
|
ITemplatedViewModel
|
|
{
|
|
public ContextualCommandViewModel(ITemplateFactory templateFactory)
|
|
{
|
|
TemplateFactory = templateFactory;
|
|
}
|
|
|
|
public ITemplateFactory TemplateFactory { get; }
|
|
} |