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-05-04 20:32:08 -04:00

16 lines
415 B
C#

namespace Oqtane.Models
{
public class PageModule
{
public int PageModuleId { get; set; }
public int PageId { get; set; }
public int ModuleId { get; set; }
public string Title { get; set; }
public string Pane { get; set; }
public int Order { get; set; }
public string ContainerType { get; set; }
public Module Module { get; set; }
}
}