add ability to modify Theme Name

This commit is contained in:
sbwalker
2023-05-25 12:56:49 -04:00
parent 95ba87945b
commit 59d1a47846
5 changed files with 59 additions and 21 deletions

View File

@ -48,7 +48,7 @@ namespace Oqtane.Models
public string ModuleDefinitionName { get; set; }
/// <summary>
/// Nice name to show in admin / edit dialogs.
/// Friendly name to show in UI
/// </summary>
public string Name { get; set; }

View File

@ -35,10 +35,12 @@ namespace Oqtane.Models
/// </summary>
public string ThemeName { get; set; }
// additional ITheme properties
[NotMapped]
/// <summary>
/// Friendly name to show in UI
/// </summary>
public string Name { get; set; }
// additional ITheme properties
[NotMapped]
public string Version { get; set; }