This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
2019-09-21 22:15:44 -04:00

20 lines
664 B
C#

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 bool EditMode { 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; }
}
}