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.
Projet_Blazor/src/CraftSharp/Shared/HeaderLayout.razor.cs

13 lines
259 B

using Microsoft.AspNetCore.Components;
using Microsoft.Extensions.Localization;
namespace CraftSharp.Shared
{
public partial class HeaderLayout
{
[Inject]
public IStringLocalizer<Index> Localizer { get; set; }
}
}