1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-25 23:30:10 +00:00
msfs-popout-panel-manager/Modules/ChildWindow.cs
2021-10-17 12:18:45 -04:00

22 lines
423 B
C#

using System;
namespace MSFSPopoutPanelManager
{
public class ChildWindow
{
public ChildWindow()
{
WindowType = WindowType.Undetermined;
}
public IntPtr Handle { get; set; }
public int PanelId { get; set; }
public string Title { get; set; }
public string ClassName { get; set; }
public WindowType WindowType { get; set; }
}
}