mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-24 14:50:10 +00:00
21 lines
587 B
C#
21 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;
|
|||
|
}
|
|||
|
}
|