toggle menu
piper-kt
9.3.0
jvm
switch theme
search in API
users-service
/
piperkt.services.users.infrastructure.persistence.model
Package-level
declarations
Types
Types
User
Entity
Link copied to clipboard
@
MappedEntity
data
class
UserEntity
(
@
Id
val
id
:
String
?
=
null
,
val
username
:
String
,
val
password
:
String
,
val
email
:
String
?
=
null
,
val
description
:
String
?
=
null
,
val
profilePicture
:
String
?
=
null
,
val
refreshToken
:
String
?
=
null
)
User entity.
User
Entity
Repository
Link copied to clipboard
@
MongoRepository
interface
UserEntityRepository
:
GenericRepository
<
UserEntity
,
String
>