Open Source Web Application Framework for ASP.NET Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
548 B

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();
}