21 lines
479 B
C#
21 lines
479 B
C#
using Microsoft.AspNetCore.Components;
|
|
using MP.Prog.Data;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MP.Prog.Pages
|
|
{
|
|
public partial class Setup : ComponentBase
|
|
{
|
|
#region Protected Methods
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
AppMService.ShowSearch = false;
|
|
AppMService.PageName = "Setup";
|
|
AppMService.PageIcon = "fas fa-wrench pr-2";
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |