Files
Disco/Disco.Models/UI/Config/DocumentTemplate/ConfigDocumentTemplateExpressionBrowserModel.cs
T
2024-12-14 16:55:37 +11:00

15 lines
427 B
C#

using System.Collections.Generic;
namespace Disco.Models.UI.Config.DocumentTemplate
{
public interface ConfigDocumentTemplateExpressionBrowserModel : BaseUIModel
{
string DeviceType { get; set; }
string UserType { get; set; }
string JobType { get; set; }
Dictionary<string, string> Variables { get; set; }
Dictionary<string, string> ExtensionLibraries { get; set; }
}
}