namespace LanMountainDesktop.AirAppSdk;
///
/// Window chrome mode for AirApp windows.
///
public enum AirAppWindowChromeMode
{
///
/// Standard window with title bar and borders.
///
Standard = 0,
///
/// Borderless window with custom chrome.
///
Borderless = 1,
///
/// Full-screen window with no decorations.
///
FullScreen = 2,
///
/// Tool window (no taskbar icon, small title bar).
///
Tool = 3,
///
/// Background-only (no UI, reserved for future use).
///
BackgroundOnly = 4
}