mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
21 lines
433 B
C#
21 lines
433 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MSFSPopoutPanelManager
|
|
{
|
|
public class WindowProcess
|
|
{
|
|
public WindowProcess()
|
|
{
|
|
ChildWindows = new List<ChildWindow>();
|
|
}
|
|
|
|
public int ProcessId { get; set; }
|
|
|
|
public string ProcessName { get; set; }
|
|
|
|
public IntPtr Handle { get; set; }
|
|
|
|
public List<ChildWindow> ChildWindows { get; set; }
|
|
}
|
|
}
|