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

8 lines
197 B
C#
Raw Normal View History

2021-07-12 21:27:40 +02:00
namespace ElectronNET.API.Entities
{
public class TrayClickEventResponse
{
public TrayClickEventArgs eventArgs { get; set; }
public Rectangle bounds { get; set; }
}
}