mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-18 15:20:47 +08:00
12 lines
399 B
C#
12 lines
399 B
C#
namespace LanMountainDesktop.AirAppSdk;
|
|
|
|
/// <summary>
|
|
/// Describes a window entry contributed by an AirApp.
|
|
/// Produced by <c>AddAirAppWindow<TWindow></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);
|