Files
LanMountainDesktop/LanMountainDesktop/Services/HostComponentSettingsStoreProvider.cs
2026-03-13 22:20:12 +08:00

15 lines
408 B
C#

using LanMountainDesktop.Services.Settings;
namespace LanMountainDesktop.Services;
internal static class HostComponentSettingsStoreProvider
{
private static readonly IComponentInstanceSettingsStore Instance =
new ComponentSettingsService(HostSettingsFacadeProvider.GetOrCreate().Settings);
public static IComponentInstanceSettingsStore GetOrCreate()
{
return Instance;
}
}