Files
LanMountainDesktop/LanMountainDesktop/Services/DesktopLayoutSettingsService.cs
2026-03-13 09:10:00 +08:00

20 lines
529 B
C#

using LanMountainDesktop.Models;
using LanMountainDesktop.Services.Settings;
namespace LanMountainDesktop.Services;
public sealed class DesktopLayoutSettingsService
{
private readonly IComponentLayoutStore _layoutStore = ComponentDomainStorageProvider.Instance;
public DesktopLayoutSettingsSnapshot Load()
{
return _layoutStore.LoadLayout();
}
public void Save(DesktopLayoutSettingsSnapshot snapshot)
{
_layoutStore.SaveLayout(snapshot ?? new DesktopLayoutSettingsSnapshot());
}
}