Files
magman/MagMan.UI/Pages/Index.razor.cs
T
2024-01-17 15:17:32 +01:00

20 lines
452 B
C#

using MagMan.Core.Services;
using Microsoft.AspNetCore.Components;
namespace MagMan.UI.Pages
{
public partial class Index
{
[Inject]
protected MessageService AppMService { get; set; } = null!;
protected override void OnInitialized()
{
AppMService.ShowSearch = false;
AppMService.PageName = "Home";
AppMService.PageIcon = "fa-solid fa-house pr-2";
}
}
}