0.4.3fixed

This commit is contained in:
lincube
2026-03-05 21:21:03 +08:00
parent b8643a2959
commit e917a1e4af
14 changed files with 862 additions and 109 deletions

View File

@@ -98,6 +98,14 @@ public sealed class AppSettingsSnapshot
];
public string WorldClockSecondHandMode { get; set; } = "Tick";
public bool DailySentenceAutoRotateEnabled { get; set; } = true;
public int DailySentenceAutoRotateIntervalMinutes { get; set; } = 60;
public bool CnrDailyNewsAutoRotateEnabled { get; set; } = true;
public int CnrDailyNewsAutoRotateIntervalMinutes { get; set; } = 60;
public AppSettingsSnapshot Clone()
{
var clone = (AppSettingsSnapshot)MemberwiseClone();