mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-25 15:20:10 +00:00
24 lines
413 B
C#
24 lines
413 B
C#
|
using System;
|
|||
|
|
|||
|
namespace MSFSPopoutPanelManager.Model
|
|||
|
{
|
|||
|
public enum PanelConfigPropertyName
|
|||
|
{
|
|||
|
PanelName,
|
|||
|
Left,
|
|||
|
Top,
|
|||
|
Width,
|
|||
|
Height,
|
|||
|
AlwaysOnTop,
|
|||
|
HideTitlebar,
|
|||
|
Invalid
|
|||
|
}
|
|||
|
|
|||
|
public class PanelConfigItem
|
|||
|
{
|
|||
|
public int PanelIndex { get; set; }
|
|||
|
|
|||
|
public PanelConfigPropertyName PanelConfigProperty { get; set; }
|
|||
|
}
|
|||
|
}
|