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

13 lines
301 B
Kotlin

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