You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
371 B

package allin.dto
import allin.model.FriendStatus
import kotlinx.serialization.Serializable
@Serializable
data class UserDTO(
val id: String,
val username: String,
val email: String,
val nbCoins: Int,
var token: String?,
val image: String?,
var nbBets: Int,
var nbFriends: Int,
var bestWin: Int,
var friendStatus: FriendStatus?
)