mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 05:40:11 +00:00
30 lines
593 B
C#
30 lines
593 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MSFSPopoutPanelManager
|
|
{
|
|
public class UserData
|
|
{
|
|
public UserData()
|
|
{
|
|
Profiles = new List<Profile>();
|
|
}
|
|
|
|
public List<Profile> Profiles { get; set; }
|
|
}
|
|
|
|
public class Profile
|
|
{
|
|
public Profile()
|
|
{
|
|
PopoutNames = new Dictionary<string, Rect>();
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
|
|
public bool AlwaysOnTop { get; set; }
|
|
|
|
public bool HidePanelTitleBar { get; set; }
|
|
|
|
public Dictionary<string, Rect> PopoutNames;
|
|
}
|
|
}
|