improved file upload, enhanced module installation from Nuget to support upgrades, added ability to upgrade the framework from Nuget, completed isolated multitenancy and site alias management, created IPortable interface for importing data into modules, added default content to initial installation
This commit is contained in:
@ -1,4 +1,6 @@
|
||||
namespace Oqtane.Models
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Oqtane.Models
|
||||
{
|
||||
public class PageTemplate
|
||||
{
|
||||
@ -10,10 +12,16 @@
|
||||
public bool IsNavigation { get; set; }
|
||||
public bool EditMode { get; set; }
|
||||
public string PagePermissions { get; set; }
|
||||
public List<PageTemplateModule> PageTemplateModules { get; set; }
|
||||
}
|
||||
|
||||
public class PageTemplateModule
|
||||
{
|
||||
public string ModuleDefinitionName { get; set; }
|
||||
public string ModulePermissions { get; set; }
|
||||
public string Title { get; set; }
|
||||
public string Pane { get; set; }
|
||||
public string ContainerType { get; set; }
|
||||
public string Content { get; set; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user