1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2025-02-16 16:34:28 +01:00
msfs-popout-panel-manager/UserData.cs

31 lines
593 B
C#
Raw Normal View History

2021-09-17 05:18:02 +02:00
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; }
2021-09-21 02:19:46 +02:00
public bool AlwaysOnTop { get; set; }
public bool HidePanelTitleBar { get; set; }
2021-09-17 05:18:02 +02:00
public Dictionary<string, Rect> PopoutNames;
}
}