Files
mapo-core/MP.Stats/Pages/TaskScheduler.razor.cs
T
Samuele Locatelli 1b6d28f2eb FixTaskMan module
- LAND
- STATS
2024-10-28 10:03:03 +01:00

39 lines
942 B
C#

using Microsoft.AspNetCore.Components;
using Microsoft.JSInterop;
using MP.Stats.Data;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using System;
using System.Linq;
using StackExchange.Redis;
using MP.Data.DatabaseModels;
using Microsoft.AspNetCore.DataProtection;
using MP.TaskMan.Models;
using static MP.TaskMan.Objects.Enums;
namespace MP.Stats.Pages
{
public partial class TaskScheduler : ComponentBase
{
#region Protected Properties
protected int minOrdinal { get; set; } = 0;
[Inject]
protected 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
}
}