Files
Electron.NET/ElectronNET.API/Entities/BrowserWindowOptions.cs

10 lines
210 B
C#

namespace ElectronNET.API.Entities
{
public class BrowserWindowOptions
{
public int Width { get; set; }
public int Height { get; set; }
public bool Show { get; set; }
}
}