mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 05:40:11 +00:00
21 lines
566 B
C#
21 lines
566 B
C#
using MSFSPopoutPanelManager.DomainModel.Profile;
|
|
using MSFSPopoutPanelManager.Orchestration;
|
|
using System;
|
|
using System.Linq;
|
|
|
|
namespace MSFSPopoutPanelManager.MainApp.ViewModel
|
|
{
|
|
public class PanelCoorOverlayViewModel : BaseViewModel
|
|
{
|
|
public PanelCoorOverlayViewModel(SharedStorage sharedStorage) : base(sharedStorage)
|
|
{
|
|
}
|
|
|
|
public PanelConfig Panel { get; private set; }
|
|
|
|
public void SetPanelId(Guid id)
|
|
{
|
|
Panel = ActiveProfile.PanelConfigs.FirstOrDefault(p => p.Id == id);
|
|
}
|
|
}
|
|
}
|