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

13 lines
305 B
Kotlin

package de.twomartens.timetable.model.common
import de.twomartens.timetable.types.NonEmptyString
@JvmInline
value class Section private constructor(val value: String) {
companion object {
fun of(section: NonEmptyString): Section {
return Section(section.value)
}
}
}