Files
magman/MagMan.UI/Pages/Index.razor.cs
T
2024-01-11 19:34:15 +01:00

21 lines
473 B
C#

using MagMan.Data.Tenant.Services;
using Microsoft.AspNetCore.Components;
using System;
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";
}
}
}