add first api core library and implement socket.io communication

This commit is contained in:
Gregor Biswanger
2017-10-03 03:28:56 +02:00
parent 606629c9a2
commit 852d3c170d
10 changed files with 359 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
namespace ElectronNET.API.Entities
{
public class BrowserWindowOptions
{
public int Width { get; set; }
public int Height { get; set; }
public bool Show { get; set; }
}
}