mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-08-18 15:33:33 +08:00
27 lines
566 B
C#
27 lines
566 B
C#
|
|
using LanMountainDesktop.AirAppIsolation.Contracts;
|
||
|
|
|
||
|
|
namespace LanMountainDesktop.AirAppSdk;
|
||
|
|
|
||
|
|
public interface IAirAppWorkerContext
|
||
|
|
{
|
||
|
|
string AirAppId { get; }
|
||
|
|
|
||
|
|
AirAppManifest Manifest { get; }
|
||
|
|
|
||
|
|
AirAppRuntimeMode RuntimeMode { get; }
|
||
|
|
|
||
|
|
string SessionId { get; }
|
||
|
|
|
||
|
|
string HostPipeName { get; }
|
||
|
|
|
||
|
|
string ProtocolVersion { get; }
|
||
|
|
|
||
|
|
string AirAppDirectory { get; }
|
||
|
|
|
||
|
|
string DataDirectory { get; }
|
||
|
|
|
||
|
|
IReadOnlyList<AirAppCapabilityDeclaration> GrantedCapabilities { get; }
|
||
|
|
|
||
|
|
IReadOnlyDictionary<string, string> StartupProperties { get; }
|
||
|
|
}
|