mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
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.
25 lines
683 B
25 lines
683 B
using Microsoft.AspNetCore.Mvc.Razor.Internal;
|
|
using Microsoft.Extensions.Localization;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.AspNetCore.Mvc.UI.Layout;
|
|
using Volo.CmsKit.Localization;
|
|
|
|
namespace Volo.CmsKit.Public.Web.Pages;
|
|
|
|
public class CmsKitPublicPageBase : Microsoft.AspNetCore.Mvc.RazorPages.Page
|
|
{
|
|
[RazorInject]
|
|
public IStringLocalizer<CmsKitResource> L { get; set; }
|
|
|
|
[RazorInject]
|
|
public IPageLayout PageLayout { get; set; }
|
|
|
|
public override Task ExecuteAsync()
|
|
{
|
|
return Task.CompletedTask; // Will be overriden by razor pages. (.cshtml)
|
|
}
|
|
}
|
|
|