io.github.jahrim.chess.authentication.service.components.data.User.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authentication-service Show documentation
Show all versions of authentication-service Show documentation
A service which handles registration and authentication in an application.
package io.github.jahrim.chess.authentication.service.components.data
/**
* A user of the authentication service with the specified username and email.
*
* @param username the specified username.
* @param email the specified email.
*/
case class User(username: String, email: String)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy