mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-18 15:33:33 +08:00
9 lines
198 B
C#
9 lines
198 B
C#
|
|
namespace LanMountainDesktop.AirAppSdk;
|
||
|
|
|
||
|
|
public sealed record AirAppInstalledInfo(
|
||
|
|
AirAppManifest Manifest,
|
||
|
|
bool IsEnabled,
|
||
|
|
bool IsLoaded,
|
||
|
|
bool IsPackage,
|
||
|
|
string? ErrorMessage);
|