Files
Hyperbar/Hyperbar.Desktop.Contextual/ContextualCommandViewModel.cs
T
2024-01-05 17:34:09 +00:00

12 lines
296 B
C#

using Hyperbar.Lifecycles;
using Hyperbar.Templates;
namespace Hyperbar.Desktop.Contextual;
public class ContextualCommandViewModel(ITemplateFactory templateFactory) :
ICommandViewModel,
ITemplatedViewModel
{
public ITemplateFactory TemplateFactory { get; } = templateFactory;
}