mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
14 lines
465 B
C#
14 lines
465 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,
|
|
IComponentSettingsAccessor ComponentSettingsAccessor,
|
|
IComponentInstanceSettingsStore ComponentSettingsStore);
|