Files
LanMountainDesktop/LanMountainDesktop/Services/HostComponentSettingsStoreProvider.cs

15 lines
408 B
C#
Raw Normal View History

2026-03-13 22:20:12 +08:00
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;
}
}