mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-19 17:03:25 +08:00
11 lines
272 B
C#
11 lines
272 B
C#
using System.Collections.Generic;
|
|
|
|
namespace LanMountainDesktop.AirAppSdk;
|
|
|
|
public interface ISettingsCatalog
|
|
{
|
|
IReadOnlyList<AirAppSettingsSectionDefinition> GetSections();
|
|
|
|
IReadOnlyList<AirAppSettingsSectionDefinition> GetSections(AirAppSettingsScope scope);
|
|
}
|