mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-19 16:13:24 +08:00
9 lines
214 B
C#
9 lines
214 B
C#
|
|
namespace LanMountainDesktop.AirAppSdk;
|
||
|
|
|
||
|
|
public interface IAirAppPackageManager
|
||
|
|
{
|
||
|
|
IReadOnlyList<AirAppInstalledInfo> GetInstalledAirApps();
|
||
|
|
|
||
|
|
AirAppPackageInstallResult InstallPackage(string packagePath);
|
||
|
|
}
|