Files
LanMountainDesktop/airapp/LanMountainDesktop.AirAppSdk/AirAppWindowRegistration.cs
2026-08-11 23:03:55 +08:00

12 lines
399 B
C#

namespace LanMountainDesktop.AirAppSdk;
/// <summary>
/// Describes a window entry contributed by an AirApp.
/// Produced by <c>AddAirAppWindow&lt;TWindow&gt;</c> and resolved by the AirAppHost
/// window loader to open the window content inside the host window shell.
/// </summary>
public sealed record AirAppWindowRegistration(
string WindowId,
string DisplayName,
Type WindowType);