Files
limanapp/LiMan.UI/Pages/UserAdmin.razor.cs
2024-07-15 12:05:29 +02:00

26 lines
590 B
C#

using LiMan.UI.Data;
using Microsoft.AspNetCore.Components;
namespace LiMan.UI.Pages
{
public partial class UserAdmin
{
#region Protected Properties
[Inject]
protected MessageService AppMService { get; set; } = null!;
#endregion Protected Properties
#region Protected Methods
protected override void OnInitialized()
{
AppMService.ShowSearch = true;
AppMService.PageName = "Gestione Utenti";
AppMService.PageIcon = "fas fa-users";
}
#endregion Protected Methods
}
}