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

13 lines
300 B
Kotlin

package de.twomartens.timetable.model.common
import de.twomartens.timetable.types.PositiveInteger
@JvmInline
value class RotationId private constructor(val id: Int) {
companion object {
fun of(id: PositiveInteger): RotationId {
return RotationId(id.value)
}
}
}