updated namespaces, improved page management,

This commit is contained in:
Shaun Walker
2019-09-14 15:31:12 -04:00
parent 2a691dbceb
commit 7d5e35c637
73 changed files with 608 additions and 309 deletions

View File

@ -3,7 +3,7 @@ using Oqtane.Models;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Oqtane.Shared.Modules.HtmlText.Models
namespace Oqtane.Modules.HtmlText.Models
{
[Table("HtmlText")]
public class HtmlTextInfo : IAuditable

View File

@ -26,5 +26,9 @@ namespace Oqtane.Models
[NotMapped]
public string Permissions { get; set; }
[NotMapped]
public int Level { get; set; }
[NotMapped]
public bool HasChildren { get; set; }
}
}

View File

@ -7,6 +7,8 @@ namespace Oqtane.Models
public int SiteId { get; set; }
public string Name { get; set; }
public string Logo { get; set; }
public string DefaultThemeType { get; set; }
public string CreatedBy { get; set; }
public DateTime CreatedOn { get; set; }