26 lines
590 B
C#
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
|
|
}
|
|
} |