timetable/module-model/src/main/kotlin/de/twomartens/timetable/model/common/Platform.kt

7 lines
138 B
Kotlin

package de.twomartens.timetable.model.common
data class Platform(
var name: String,
var sections: MutableList<Section>
)