Files
limanapp/EgwControlCenter.Core/IAppControlService.cs
T
Samuele Locatelli 5a3c338238 Modifica init app blazor x tray
Share servizio controllo tra winform e blazor
2024-09-23 08:26:22 +02:00

18 lines
375 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EgwControlCenter.Core
{
public interface IAppControlService
{
event Action EA_ConfigUpdated;
event Action EA_StatusUpdated;
void DoForceCheck();
void DoReloadConfig();
void DoSaveConfig();
}
}