using Microsoft.AspNetCore.Components; namespace MP.Land.Pages { public partial class DbInfo : ComponentBase { #region Protected Properties [Inject] protected Data.LMessageService MServ { get; set; } = null!; #endregion Protected Properties #region Protected Methods protected override void OnInitialized() { MServ.ShowSearch = true; MServ.PageName = "DB Info"; MServ.PageIcon = "fas fa-database"; } #endregion Protected Methods } }