mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-21 08:04:26 +08:00
17 lines
589 B
C#
17 lines
589 B
C#
using LanMountainDesktop.Host.Abstractions;
|
|
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,
|
|
ComponentChromeContext Chrome,
|
|
IComponentSettingsAccessor ComponentSettingsAccessor,
|
|
IComponentInstanceSettingsStore ComponentSettingsStore);
|