12 lines
303 B
C#
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>();
|
|
}
|
|
}
|