mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
18 lines
455 B
Kotlin
18 lines
455 B
Kotlin
|
|
package com.geeksville.mesh.model
|
||
|
|
|
||
|
|
import kotlinx.serialization.Serializable
|
||
|
|
|
||
|
|
@Serializable
|
||
|
|
data class DeviceHardware(
|
||
|
|
val hwModel: Int,
|
||
|
|
val hwModelSlug: String,
|
||
|
|
val platformioTarget: String,
|
||
|
|
val architecture: String,
|
||
|
|
val activelySupported: Boolean,
|
||
|
|
val supportLevel: Int? = null,
|
||
|
|
val displayName: String,
|
||
|
|
val tags: List<String>? = listOf(),
|
||
|
|
val images: List<String>? = listOf(),
|
||
|
|
val requiresDfu: Boolean? = null
|
||
|
|
)
|