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

13 lines
292 B
Kotlin

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