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/Model/PanelConfigPropertyName.cs

24 lines
440 B
C#
Raw Normal View History

2022-06-30 23:53:08 +00:00
namespace MSFSPopoutPanelManager.Model
2022-01-27 13:40:04 +00:00
{
public enum PanelConfigPropertyName
{
PanelName,
Left,
Top,
Width,
Height,
AlwaysOnTop,
HideTitlebar,
2022-04-18 19:52:39 +00:00
FullScreen,
2022-06-13 03:49:56 +00:00
TouchEnabled,
2022-01-27 13:40:04 +00:00
Invalid
}
public class PanelConfigItem
{
public int PanelIndex { get; set; }
public PanelConfigPropertyName PanelConfigProperty { get; set; }
}
}