Merge pull request #1489 from sbwalker/dev

allow order to be defined in page templates
This commit is contained in:
Shaun Walker 2021-06-16 17:20:53 -04:00 committed by GitHub
commit 8354d66c84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;
namespace Oqtane.Models
@ -13,6 +13,7 @@ namespace Oqtane.Models
{
public string Name { get; set; }
public string Parent { get; set; }
public int Order { get; set; }
public string Path { get; set; }
public string Icon { get; set; }
public bool IsNavigation { get; set; }