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