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

18 lines
338 B
C#

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