Files
LanMountainDesktop/airapp/LanMountainDesktop.AirAppSdk/IAirAppWorkerContext.cs
2026-08-11 23:03:55 +08:00

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; }
}