Files
mapo-core/MP.Land/Pages/TaskScheduler.razor.cs
T
Samuele Locatelli 6ca41ed720 MP.TaskMan +MP. STATS
- eliminazione riferimenti codice escluso da compilazione
- pulizia codice da componenti non impiegati

NON ancora 100% ok pulizia
2024-10-26 12:51:10 +02:00

37 lines
869 B
C#

using Microsoft.AspNetCore.Components;
using Microsoft.JSInterop;
using MP.TaskMan.Models;
using MP.Land.Data;
using static MP.TaskMan.Objects.Enums;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using System;
using System.Linq;
using MP.Data.Services;
using DnsClient.Protocol;
using MP.TaskMan.Services;
namespace MP.Land.Pages
{
public partial class TaskScheduler : ComponentBase
{
#region Protected Properties
[Inject]
protected Data.MessageService MServ { get; set; } = null!;
#endregion Protected Properties
#region Protected Methods
protected override void OnInitialized()
{
MServ.ShowSearch = true;
MServ.PageName = "Task Scheduler";
MServ.PageIcon = "oi oi-clock";
}
#endregion Protected Methods
}
}