mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
37 lines
982 B
C#
37 lines
982 B
C#
using System.Collections.Generic;
|
|
|
|
namespace LanMontainDesktop.Models;
|
|
|
|
public sealed class AppSettingsSnapshot
|
|
{
|
|
public int GridShortSideCells { get; set; } = 12;
|
|
|
|
public bool? IsNightMode { get; set; }
|
|
|
|
public string? ThemeColor { get; set; }
|
|
|
|
public string? WallpaperPath { get; set; }
|
|
|
|
public string WallpaperPlacement { get; set; } = "Fill";
|
|
|
|
public int SettingsTabIndex { get; set; } = 0;
|
|
|
|
public string LanguageCode { get; set; } = "zh-CN";
|
|
|
|
public List<string> TopStatusComponentIds { get; set; } = [];
|
|
|
|
public List<string> PinnedTaskbarActions { get; set; } =
|
|
[
|
|
TaskbarActionId.MinimizeToWindows.ToString(),
|
|
TaskbarActionId.OpenSettings.ToString()
|
|
];
|
|
|
|
public bool EnableDynamicTaskbarActions { get; set; } = false;
|
|
|
|
public string TaskbarLayoutMode { get; set; } = "BottomFullRowMacStyle";
|
|
|
|
public int DesktopPageCount { get; set; } = 1;
|
|
|
|
public int CurrentDesktopSurfaceIndex { get; set; } = 0;
|
|
}
|