Files

9 lines
214 B
C#
Raw Permalink Normal View History

2026-08-11 23:03:55 +08:00
namespace LanMountainDesktop.AirAppSdk;
public interface IAirAppPackageManager
{
IReadOnlyList<AirAppInstalledInfo> GetInstalledAirApps();
AirAppPackageInstallResult InstallPackage(string packagePath);
}