1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-25 15:20:10 +00:00
msfs-popout-panel-manager/Shared/WindowProcess.cs
2021-12-19 21:31:17 -05:00

13 lines
234 B
C#

using System;
namespace MSFSPopoutPanelManager
{
public class WindowProcess
{
public int ProcessId { get; set; }
public string ProcessName { get; set; }
public IntPtr Handle { get; set; }
}
}