1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-22 13:50:14 +00:00
msfs-popout-panel-manager/DomainModel/Profile/SwitchWindowConfig.cs

19 lines
458 B
C#
Raw Normal View History

2024-09-17 21:33:23 +00:00
using System.Collections.Generic;
using MSFSPopoutPanelManager.Shared;
2024-09-17 14:42:07 +00:00
namespace MSFSPopoutPanelManager.DomainModel.Profile
{
public class SwitchWindowConfig : ObservableObject
{
public bool IsEnabled { get; set; } = false;
2024-09-17 21:33:23 +00:00
public List<SwitchWindowPanel> Panels { get; set; }
}
public class SwitchWindowPanel
{
public string DisplayName { get; set; }
public string PanelCaption { get; set; }
2024-09-17 14:42:07 +00:00
}
}