You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hass-workstation-service/hass-workstation-service/Communication/InterProcesCommunication/ServiceContractInterfaces.cs

13 lines
318 B

using System;
using System.Collections.Generic;
using System.Text;
namespace hass_workstation_service.Communication.NamedPipe
{
public interface ServiceContractInterfaces
{
public string Ping(string str);
void WriteMqttBrokerSettings(string host, string username, string password);
}
}