feature: update expression browser and add plugin expression extensions

This commit is contained in:
Gary Sharp
2025-01-16 12:36:01 +11:00
parent 963970feeb
commit a3e1e1d030
23 changed files with 652 additions and 555 deletions
@@ -0,0 +1,16 @@
using Disco.Models.UI.Config.Expressions;
using System.Collections.Generic;
namespace Disco.Web.Areas.Config.Models.Expressions
{
public class BrowserModel : ConfigExpressionsBrowserModel
{
public string DeviceType { get; set; }
public string UserType { get; set; }
public string JobType { get; set; }
public Dictionary<string, string> Variables { get; set; }
public Dictionary<string, string> ExtensionLibraries { get; set; }
public Dictionary<string, string> PluginExtensionLibraries { get; set; }
}
}