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