15 lines
522 B
C#
15 lines
522 B
C#
using Disco.Models.UI.Config.DocumentTemplate;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Disco.Web.Areas.Config.Models.DocumentTemplate
|
|
{
|
|
public class ExpressionBrowserModel : ConfigDocumentTemplateExpressionBrowserModel
|
|
{
|
|
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; }
|
|
}
|
|
} |