1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-22 05:40:11 +00:00
msfs-popout-panel-manager/UserData.cs
2021-09-20 21:31:01 -04:00

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;
}
}