20 lines
452 B
C#
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";
|
|
}
|
|
}
|
|
} |