1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-24 14:50:10 +00:00
msfs-popout-panel-manager/Orchestration/BaseOrchestrator.cs

21 lines
587 B
C#
Raw Normal View History

2024-02-28 02:44:21 +00:00
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;
}
}