Files
2021-11-18 15:21:44 +01:00

33 lines
754 B
C#

using LiMan.UI.Data;
using Microsoft.AspNetCore.Components;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace LiMan.UI.Pages
{
public partial class LiManDB
{
#region Protected Properties
[Inject]
protected MessageService AppMService { get; set; }
public object Configuration { get; private set; }
#endregion Protected Properties
#region Protected Methods
protected override void OnInitialized()
{
AppMService.ShowSearch = false;
AppMService.PageName = "Gestione Licenze NEXT";
AppMService.PageIcon = "fas fa-key pr-1";
}
#endregion Protected Methods
}
}