mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 05:40:11 +00:00
19 lines
No EOL
458 B
C#
19 lines
No EOL
458 B
C#
using System.Collections.Generic;
|
|
using MSFSPopoutPanelManager.Shared;
|
|
|
|
namespace MSFSPopoutPanelManager.DomainModel.Profile
|
|
{
|
|
public class SwitchWindowConfig : ObservableObject
|
|
{
|
|
public bool IsEnabled { get; set; } = false;
|
|
|
|
public List<SwitchWindowPanel> Panels { get; set; }
|
|
}
|
|
|
|
public class SwitchWindowPanel
|
|
{
|
|
public string DisplayName { get; set; }
|
|
|
|
public string PanelCaption { get; set; }
|
|
}
|
|
} |