mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 15:44:25 +08:00
11 lines
254 B
C#
11 lines
254 B
C#
using System.Collections.Generic;
|
|
|
|
namespace LanMountainDesktop.PluginSdk;
|
|
|
|
public interface ISettingsCatalog
|
|
{
|
|
IReadOnlyList<SettingsSectionDefinition> GetSections();
|
|
|
|
IReadOnlyList<SettingsSectionDefinition> GetSections(SettingsScope scope);
|
|
}
|