1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-24 06:40:09 +00:00
msfs-popout-panel-manager/Orchestration/BaseOrchestrator.cs
2024-02-27 21:44:21 -05:00

20 lines
587 B
C#

using MSFSPopoutPanelManager.Shared;
namespace MSFSPopoutPanelManager.Orchestration
{
public abstract class BaseOrchestrator : ObservableObject
{
private readonly SharedStorage _sharedStorage;
protected BaseOrchestrator(SharedStorage sharedStorage)
{
_sharedStorage = sharedStorage;
}
protected ProfileData ProfileData => _sharedStorage.ProfileData;
protected AppSettingData AppSettingData => _sharedStorage.AppSettingData;
protected FlightSimData FlightSimData => _sharedStorage.FlightSimData;
}
}