Files
Electron.NET/ElectronNET.API/Entities/TrayClickEventResponse.cs
theolivenbaum 95d614796e works
2021-07-12 21:27:40 +02:00

8 lines
197 B
C#

namespace ElectronNET.API.Entities
{
public class TrayClickEventResponse
{
public TrayClickEventArgs eventArgs { get; set; }
public Rectangle bounds { get; set; }
}
}