mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-18 15:20:47 +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);
|
|
}
|