using Quobject.SocketIoClientDotNet.Client;
namespace ElectronNET.API.Interfaces
{
///
/// Wrapper for the underlying Socket connection
///
public interface IApplicationSocket
{
///
/// Socket used to communicate with main.js
///
Socket Socket { get; }
}
}