using InABox.Core; namespace InABox.Rpc { public interface IRpcServer { void Start(); void Stop(); event LogEvent? OnLog; bool IsSecure(); } }