namespace LanMountainDesktop.AirAppSdk;
///
/// AirApp SDK information.
///
public static class AirAppSdkInfo
{
///
/// Current SDK version.
///
public const string SdkVersion = "6.0.0";
///
/// Current API version.
/// AirApps must target this major version to be compatible.
///
public const string ApiVersion = "6.0.0";
///
/// Gets the SDK display name.
///
public static string DisplayName => "LanMountainDesktop AirApp SDK";
///
/// Gets the default manifest file name.
///
public const string ManifestFileName = "airapp.json";
///
/// Gets the package file extension.
///
public const string PackageExtension = ".laapp";
}