enhancements to ModuleCreator so that it can scaffold internal and external modules

This commit is contained in:
Shaun Walker
2020-04-10 13:49:50 -04:00
parent 1edc34dca0
commit 90a127fbb8
46 changed files with 1035 additions and 100 deletions

View File

@ -19,6 +19,7 @@ namespace Oqtane.Models
PermissionNames = "";
ServerAssemblyName = "";
ControlTypeRoutes = "";
Template = "";
}
public int ModuleDefinitionId { get; set; }
@ -54,10 +55,12 @@ namespace Oqtane.Models
[NotMapped]
public string ServerAssemblyName { get; set; }
[NotMapped]
public string ControlTypeTemplate { get; set; }
[NotMapped]
public string ControlTypeRoutes { get; set; }
[NotMapped]
public string Template { get; set; }
[NotMapped]
public string ControlTypeTemplate { get; set; }
[NotMapped]
public string AssemblyName { get; set; }
[NotMapped]
public string Permissions { get; set; }