Files
Hyperbar/Hyperbar.Desktop.Contextual/ContextualCommandBuilder.cs
T
2024-01-04 20:53:49 +00:00

12 lines
303 B
C#

using Microsoft.Extensions.DependencyInjection;
namespace Hyperbar.Desktop.Contextual;
public class ContextualCommandBuilder : ICommandBuilder
{
public void Create(IServiceCollection services)
{
services.AddCommandTemplate<ContextualCommandViewModel, ContextualCommandView>();
}
}