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