1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 14:10:45 +00:00
msfs-popout-panel-manager/Provider/WindowProcess.cs
2022-02-06 13:24:59 -05:00

13 lines
243 B
C#

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