mirror of https://github.com/abpframework/abp.git
1 changed files with 16 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||
using System.Collections.Generic; |
|||
using Volo.Abp.AspNetCore.Components.Web.Theming.PageToolbars; |
|||
using Volo.Abp.BlazoriseUI; |
|||
using Volo.Abp.DependencyInjection; |
|||
|
|||
namespace Volo.Abp.AspNetCore.Components.Web.Theming.Layout; |
|||
|
|||
public class PageLayout : IScopedDependency |
|||
{ |
|||
// TODO: Consider using this property for setting Page Title too.
|
|||
public virtual string Title { get; set; } |
|||
|
|||
public virtual List<BreadcrumbItem> BreadcrumbItems { get; set; } = new(); |
|||
|
|||
public virtual List<PageToolbarItem> ToolbarItems { get; set; } = new(); |
|||
} |
|||
Loading…
Reference in new issue