Files
LanMountainDesktop/LanMountainDesktop.AirAppSdk/IAirAppAppearanceContext.cs
2026-06-08 02:39:44 +08:00

20 lines
552 B
C#

namespace LanMountainDesktop.AirAppSdk;
/// <summary>
/// Provides appearance and theme context.
/// </summary>
public interface IAirAppAppearanceContext
{
/// <summary>
/// Gets the current appearance snapshot.
/// </summary>
AirAppAppearanceSnapshot CurrentSnapshot { get; }
/// <summary>
/// Subscribe to appearance changes.
/// </summary>
/// <param name="handler">Change handler</param>
/// <returns>Subscription token</returns>
IDisposable SubscribeToChanges(Action<AirAppAppearanceSnapshot> handler);
}