Refactor host user security model, support static assets in modules and themes, module definition permissions and categories, paging control, remove SiteUsers, move seed data from script to site template for installation
This commit is contained in:
18
Oqtane.Shared/Models/PageTemplate.cs
Normal file
18
Oqtane.Shared/Models/PageTemplate.cs
Normal file
@ -0,0 +1,18 @@
|
||||
namespace Oqtane.Models
|
||||
{
|
||||
public class PageTemplate
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Parent { get; set; }
|
||||
public string Path { get; set; }
|
||||
public int Order { get; set; }
|
||||
public string Icon { get; set; }
|
||||
public bool IsNavigation { get; set; }
|
||||
public string PagePermissions { get; set; }
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user