namespace LanMountainDesktop.AirAppSdk;
///
/// This is the runtime snapshot shape consumed by plugins inside the host process.
/// It is intentionally distinct from the wire DTO with the same name in
/// LanMountainDesktop.AirAppIsolation.Contracts.AirAppAppearanceSnapshot.
///
public sealed record AirAppMaterialSurfaceSnapshot(
string BackgroundColor,
string BorderColor,
double BlurRadius,
double Opacity);
///
/// Runtime-facing appearance snapshot for plugins. This is not the same contract as the
/// wire-format snapshot in LanMountainDesktop.AirAppIsolation.Contracts, even though the
/// type name matches.
///
public sealed record AirAppAppearanceSnapshot(
AirAppCornerRadiusTokens CornerRadiusTokens,
string ThemeVariant,
string? AccentColor = null,
string? SeedColor = null,
string? ColorSource = null,
string? SystemMaterialMode = null,
IReadOnlyDictionary? ColorRoles = null,
IReadOnlyDictionary? MaterialSurfaces = null,
IReadOnlyList? WallpaperSeedCandidates = null);