mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 05:40:11 +00:00
17 lines
341 B
C#
17 lines
341 B
C#
using System;
|
|
|
|
namespace MSFSPopoutPanelManager.Shared
|
|
{
|
|
public class TouchPanelOpenEventArg : EventArgs
|
|
{
|
|
public string PlaneId { get; set; }
|
|
|
|
public string PanelId { get; set; }
|
|
|
|
public string Caption { get; set; }
|
|
|
|
public int Width { get; set; }
|
|
|
|
public int Height { get; set; }
|
|
}
|
|
}
|