added DecisionTable/DataSource model type

This commit is contained in:
Brian Long 2025-04-08 14:42:11 -04:00
parent 3e0a6d7767
commit dac93ad154

View File

@ -29,7 +29,9 @@ public interface ModelsApi {
enum ModelType {
Process(0),
Form(2),
App(3);
App(3),
DecisionTable(4),
DataModel(5);
private int id;
private ModelType(int id) {