Files
LanMountainDesktop/airapp/LanMountainDesktop.AirAppSdk/ISettingsCatalog.cs

11 lines
272 B
C#
Raw Normal View History

2026-08-11 23:03:55 +08:00
using System.Collections.Generic;
namespace LanMountainDesktop.AirAppSdk;
public interface ISettingsCatalog
{
IReadOnlyList<AirAppSettingsSectionDefinition> GetSections();
IReadOnlyList<AirAppSettingsSectionDefinition> GetSections(AirAppSettingsScope scope);
}