Files
KnockOutWhist-Web/knockoutwhistweb/app/model/users/User.scala
2025-11-27 08:53:37 +01:00

20 lines
407 B
Scala

package model.users
import java.util.UUID
case class User(
internalId: Long,
id: UUID,
name: String,
passwordHash: String
) {
def withName(newName: String): User = {
this.copy(name = newName)
}
private def withPasswordHash(newPasswordHash: String): User = {
this.copy(passwordHash = newPasswordHash)
}
}