From f6261d0f4503a5d10e542d1cec34813e806730b3 Mon Sep 17 00:00:00 2001 From: Stefan Roelofs Date: Sat, 27 Mar 2021 23:22:34 +0100 Subject: [PATCH] Add missing method to interface --- .../InterProcesCommunication/IServiceContractInterfaces.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/hass-workstation-service/Communication/InterProcesCommunication/IServiceContractInterfaces.cs b/hass-workstation-service/Communication/InterProcesCommunication/IServiceContractInterfaces.cs index 51e2fdd..4252e75 100644 --- a/hass-workstation-service/Communication/InterProcesCommunication/IServiceContractInterfaces.cs +++ b/hass-workstation-service/Communication/InterProcesCommunication/IServiceContractInterfaces.cs @@ -22,6 +22,7 @@ namespace hass_workstation_service.Communication.NamedPipe List GetConfiguredCommands(); void AddCommand(AvailableCommands commandType, string json); void RemoveCommandById(Guid id); + void UpdateCommandById(Guid id, string json); string GetCurrentVersion(); } } \ No newline at end of file