feature: update expression browser and add plugin expression extensions
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
|
||||
namespace Disco.Services.Plugins.Features.ExpressionExtensionProvider
|
||||
{
|
||||
public class ExpressionExtensionRegistration
|
||||
{
|
||||
public PluginFeatureManifest FeatureManifest { get; }
|
||||
public string Alias { get; }
|
||||
public Type ExtensionType { get; }
|
||||
|
||||
public ExpressionExtensionRegistration(PluginFeatureManifest featureManifest, string alias, Type extensionType)
|
||||
{
|
||||
FeatureManifest = featureManifest;
|
||||
Alias = alias;
|
||||
ExtensionType = extensionType;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user