allow order to be defined in page templates

This commit is contained in:
Shaun Walker 2021-06-16 17:24:45 -04:00
parent 7ee9923b52
commit d32b622f7e
2 changed files with 612 additions and 555 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Oqtane.Models namespace Oqtane.Models
@ -13,6 +13,7 @@ namespace Oqtane.Models
{ {
public string Name { get; set; } public string Name { get; set; }
public string Parent { get; set; } public string Parent { get; set; }
public int Order { get; set; }
public string Path { get; set; } public string Path { get; set; }
public string Icon { get; set; } public string Icon { get; set; }
public bool IsNavigation { get; set; } public bool IsNavigation { get; set; }