mirror of https://github.com/abpframework/abp
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.
14 lines
398 B
14 lines
398 B
using Microsoft.AspNetCore.Mvc.Localization;
|
|
using Microsoft.AspNetCore.Mvc.Razor.Internal;
|
|
using MyCompanyName.MyProjectName.Localization;
|
|
using Volo.Abp.AspNetCore.Mvc.UI.RazorPages;
|
|
|
|
namespace MyCompanyName.MyProjectName.Pages
|
|
{
|
|
public abstract class MyProjectNamePageBase : AbpPage
|
|
{
|
|
[RazorInject]
|
|
public IHtmlLocalizer<MyProjectNameResource> L { get; set; }
|
|
}
|
|
}
|