mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-25 15:20:10 +00:00
13 lines
234 B
C#
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; }
|
|
}
|
|
}
|