Files
lincube c4df243610 setting_re2
设置架构革新中
2026-03-13 00:33:00 +08:00

11 lines
254 B
C#

using System.Collections.Generic;
namespace LanMountainDesktop.PluginSdk;
public interface ISettingsCatalog
{
IReadOnlyList<SettingsSectionDefinition> GetSections();
IReadOnlyList<SettingsSectionDefinition> GetSections(SettingsScope scope);
}