mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-22 00:54:26 +08:00
15 lines
408 B
C#
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;
|
|
}
|
|
}
|