DatabaseUserWithPlanets

data class DatabaseUserWithPlanets(val user: UserRoomEntity, val planets: List<PlanetRoomEntity>)

Data class representing a user with associated planets in the local database.

Constructors

Link copied to clipboard
constructor(user: UserRoomEntity, planets: List<PlanetRoomEntity>)

Properties

Link copied to clipboard

The list of planets associated with the user.

Link copied to clipboard

The user information.