Files
2026-08-11 23:03:55 +08:00

11 lines
272 B
C#

using System.Collections.Generic;
namespace LanMountainDesktop.AirAppSdk;
public interface ISettingsCatalog
{
IReadOnlyList<AirAppSettingsSectionDefinition> GetSections();
IReadOnlyList<AirAppSettingsSectionDefinition> GetSections(AirAppSettingsScope scope);
}