5a3c338238
Share servizio controllo tra winform e blazor
18 lines
375 B
C#
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();
|
|
}
|
|
}
|