mirror of
https://github.com/TermoraDev/termora.git
synced 2026-01-16 02:12:58 +08:00
23 lines
221 B
Kotlin
23 lines
221 B
Kotlin
package app.termora
|
|
|
|
enum class AppLayout {
|
|
/**
|
|
* Windows
|
|
*/
|
|
Zip,
|
|
Exe,
|
|
Appx,
|
|
|
|
/**
|
|
* macOS
|
|
*/
|
|
App,
|
|
AppStore,
|
|
|
|
/**
|
|
* Linux
|
|
*/
|
|
TarGz,
|
|
AppImage,
|
|
Deb,
|
|
} |