mirror of
https://github.com/SimpleMobileTools/Simple-Flashlight.git
synced 2025-06-05 21:59:19 +02:00
14 lines
235 B
Kotlin
14 lines
235 B
Kotlin
package com.simplemobiletools.flashlight.models
|
|
|
|
class Events {
|
|
class StateChanged(val isEnabled: Boolean)
|
|
|
|
class CameraUnavailable
|
|
|
|
class StopStroboscope
|
|
|
|
class StopSOS
|
|
|
|
class SleepTimerChanged(val seconds: Int)
|
|
}
|