allow users to modify default module names, descriptions, and categories and improve control panel behavior

This commit is contained in:
Shaun Walker
2020-04-18 10:51:07 -04:00
parent f56d1fe543
commit 62987ca72f
6 changed files with 130 additions and 23 deletions

View File

@ -24,6 +24,9 @@ namespace Oqtane.Models
public int ModuleDefinitionId { get; set; }
public string ModuleDefinitionName { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Categories { get; set; }
public string CreatedBy { get; set; }
public DateTime CreatedOn { get; set; }
@ -33,12 +36,6 @@ namespace Oqtane.Models
[NotMapped]
public int SiteId { get; set; }
[NotMapped]
public string Name { get; set; }
[NotMapped]
public string Description { get; set; }
[NotMapped]
public string Categories { get; set; }
[NotMapped]
public string Version { get; set; }
[NotMapped]
public string Owner { get; set; }