mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-18 15:33:33 +08:00
15 lines
510 B
C#
15 lines
510 B
C#
using LanMountainDesktop.PluginSdk;
|
|
using LanMountainDesktop.Services;
|
|
using LanMountainDesktop.Services.Settings;
|
|
|
|
namespace LanMountainDesktop.ComponentSystem;
|
|
|
|
public sealed record DesktopComponentRuntimeContext(
|
|
string ComponentId,
|
|
string? PlacementId,
|
|
ISettingsFacadeService SettingsFacade,
|
|
ISettingsService SettingsService,
|
|
IAppearanceThemeService AppearanceTheme,
|
|
IComponentSettingsAccessor ComponentSettingsAccessor,
|
|
IComponentInstanceSettingsStore ComponentSettingsStore);
|