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