Files
termora/src/main/kotlin/app/termora/AppLayout.kt
2025-08-06 19:56:06 +08:00

23 lines
221 B
Kotlin

package app.termora
enum class AppLayout {
/**
* Windows
*/
Zip,
Exe,
Appx,
/**
* macOS
*/
App,
AppStore,
/**
* Linux
*/
TarGz,
AppImage,
Deb,
}