mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 05:34:34 +00:00
10 lines
210 B
C#
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; }
|
|
}
|
|
}
|