using System.Collections.Generic; namespace LanMountainDesktop.AirAppSdk; public interface IAirAppSettingsService { string AirAppId { get; } IComponentSettingsAccessor GetComponentAccessor(string componentId, string? placementId); T LoadComponentSection(string componentId, string? placementId, string sectionId) where T : new(); void SaveComponentSection( string componentId, string? placementId, string sectionId, T section, IReadOnlyCollection? changedKeys = null); void DeleteComponentSection(string componentId, string? placementId, string sectionId); }