Files
HeliBLE/app/src/main/java/com/helible/pilot/dataclasses/GeneralMessage.kt
gogacoder 5e0f2f1bb7 Joystick & Pid Configuration
Flexible PID configuration and joysticks were added
2024-02-28 23:41:30 +07:00

7 lines
191 B
Kotlin

package com.helible.pilot.dataclasses
// This dataclass provide message content with its type without any markers
data class GeneralMessage(
val type: MessageType,
val data: String
)