20 lines
384 B
Plaintext
20 lines
384 B
Plaintext
@page "/"
|
|
|
|
@using LiMan.UI.Data
|
|
|
|
@inject MessageService AppMService
|
|
|
|
<h1>Gestore licenze EgalWare</h1>
|
|
|
|
<p>Prego selezionare il modulo desiderato tra quelli disponibili</p>
|
|
|
|
@code
|
|
{
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
|
|
AppMService.ShowSearch = false;
|
|
AppMService.PageName = "Home";
|
|
AppMService.PageIcon = "fas fa-home pr-1";
|
|
}
|
|
} |